Even number not the sum of two base $2$ palindromes
$begingroup$
What's the least positive even number not a sum of two base $2$ palindromes? I've checked and it must be over $100$ since all up to $100$ are such sums. [Or, which to me seems unlikely, are all even numbers such sums?]
Base $2$ palindromes entry o.e.i.s. http://oeis.org/A006995
palindrome
$endgroup$
add a comment |
$begingroup$
What's the least positive even number not a sum of two base $2$ palindromes? I've checked and it must be over $100$ since all up to $100$ are such sums. [Or, which to me seems unlikely, are all even numbers such sums?]
Base $2$ palindromes entry o.e.i.s. http://oeis.org/A006995
palindrome
$endgroup$
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49
add a comment |
$begingroup$
What's the least positive even number not a sum of two base $2$ palindromes? I've checked and it must be over $100$ since all up to $100$ are such sums. [Or, which to me seems unlikely, are all even numbers such sums?]
Base $2$ palindromes entry o.e.i.s. http://oeis.org/A006995
palindrome
$endgroup$
What's the least positive even number not a sum of two base $2$ palindromes? I've checked and it must be over $100$ since all up to $100$ are such sums. [Or, which to me seems unlikely, are all even numbers such sums?]
Base $2$ palindromes entry o.e.i.s. http://oeis.org/A006995
palindrome
palindrome
edited Jan 22 at 1:42
J. W. Tanner
2,9191217
2,9191217
asked Dec 27 '18 at 17:29
coffeemathcoffeemath
2,8571415
2,8571415
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49
add a comment |
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
$176$ is your first culprit. Here's the Pseudocode (Python) I used. List was taken from OEIS.
from itertools import product
mylist = [0,1,3,5,7,9,15,17,21,27,31,33,45,51,63,65,73,85,
93,99,107,119,127,129,153,165,189,195,219,231,255,
257,273,297,313,325,341,365,381,387,403,427,443,
455,471,495,511,513,561,585,633,645,693,717,765,
771,819,843]
valids = set()
for i,j in product(mylist,mylist):
valids.add(i+j)
for i in range(0,850,2):
if i not in valids:
print(i)
break
$endgroup$
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3054188%2feven-number-not-the-sum-of-two-base-2-palindromes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
$176$ is your first culprit. Here's the Pseudocode (Python) I used. List was taken from OEIS.
from itertools import product
mylist = [0,1,3,5,7,9,15,17,21,27,31,33,45,51,63,65,73,85,
93,99,107,119,127,129,153,165,189,195,219,231,255,
257,273,297,313,325,341,365,381,387,403,427,443,
455,471,495,511,513,561,585,633,645,693,717,765,
771,819,843]
valids = set()
for i,j in product(mylist,mylist):
valids.add(i+j)
for i in range(0,850,2):
if i not in valids:
print(i)
break
$endgroup$
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
add a comment |
$begingroup$
$176$ is your first culprit. Here's the Pseudocode (Python) I used. List was taken from OEIS.
from itertools import product
mylist = [0,1,3,5,7,9,15,17,21,27,31,33,45,51,63,65,73,85,
93,99,107,119,127,129,153,165,189,195,219,231,255,
257,273,297,313,325,341,365,381,387,403,427,443,
455,471,495,511,513,561,585,633,645,693,717,765,
771,819,843]
valids = set()
for i,j in product(mylist,mylist):
valids.add(i+j)
for i in range(0,850,2):
if i not in valids:
print(i)
break
$endgroup$
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
add a comment |
$begingroup$
$176$ is your first culprit. Here's the Pseudocode (Python) I used. List was taken from OEIS.
from itertools import product
mylist = [0,1,3,5,7,9,15,17,21,27,31,33,45,51,63,65,73,85,
93,99,107,119,127,129,153,165,189,195,219,231,255,
257,273,297,313,325,341,365,381,387,403,427,443,
455,471,495,511,513,561,585,633,645,693,717,765,
771,819,843]
valids = set()
for i,j in product(mylist,mylist):
valids.add(i+j)
for i in range(0,850,2):
if i not in valids:
print(i)
break
$endgroup$
$176$ is your first culprit. Here's the Pseudocode (Python) I used. List was taken from OEIS.
from itertools import product
mylist = [0,1,3,5,7,9,15,17,21,27,31,33,45,51,63,65,73,85,
93,99,107,119,127,129,153,165,189,195,219,231,255,
257,273,297,313,325,341,365,381,387,403,427,443,
455,471,495,511,513,561,585,633,645,693,717,765,
771,819,843]
valids = set()
for i,j in product(mylist,mylist):
valids.add(i+j)
for i in range(0,850,2):
if i not in valids:
print(i)
break
answered Dec 27 '18 at 17:45
AnvitAnvit
1,735419
1,735419
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
add a comment |
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
$begingroup$
Thanks! I don't have (or know how to program) much knowledge on python or other CAS which would allow me to check.
$endgroup$
– coffeemath
Dec 27 '18 at 17:51
1
1
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
$begingroup$
@coffeemath You can check 176 by hand aswell since you do have a list of binary palindromes :P
$endgroup$
– Anvit
Dec 27 '18 at 17:53
1
1
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
$begingroup$
@coffeemath or, in any computer language, you can download the first ten thousand palindromes to a text file from oeis.org/A006995/b006995.txt and then write a program to add them in pairs, finally sort them and report those even numbers not achieved up to some bound. In C++ I can make a set type, it will automatically keep the pairwise sums in sorted order and not keep duplicates
$endgroup$
– Will Jagy
Dec 27 '18 at 18:56
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3054188%2feven-number-not-the-sum-of-two-base-2-palindromes%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
leading $0$'s not allowed, I presume?
$endgroup$
– Anvit
Dec 27 '18 at 17:39
$begingroup$
@Anvit Yes, not with leading $0'$s -- all palindromes are thus odd numbers.
$endgroup$
– coffeemath
Dec 27 '18 at 17:49