login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A273822
Integers n such that n^3 + 1 is the average of two positive cubes.
2
27, 227, 335, 2387, 9299, 104571, 113519, 118499, 212343, 258999, 328499, 455600, 699891, 820755, 971360, 977051, 1059239, 1119723, 1193631, 1421367, 1604084, 2231999, 2794067, 4191431, 5450948, 6054611, 6769607, 7672391, 7760639, 7875035, 8091615, 9606203, 15511268
OFFSET
1,1
COMMENTS
Integers n such that n^3 + 1 is the average of two distinct positive cubes.
EXAMPLE
27 is a term because 27^3 + 1 = (4^3 + 34^3)/2.
PROG
(PARI) isA003325(n) = for(k=1, sqrtnint(n\2, 3), ispower(n-k^3, 3) && return(1));
lista(nn) = for(n=1, nn, if(isA003325(2*(n^3+1)), print1(n, ", ")));
CROSSREFS
Sequence in context: A222994 A125364 A126522 * A027500 A069979 A183806
KEYWORD
nonn
AUTHOR
Altug Alkan, May 31 2016
EXTENSIONS
a(9)-a(12) from Giovanni Resta, Jun 01 2016
a(13)-a(33) from Chai Wah Wu, Jun 19 2016
STATUS
approved