OFFSET
1,1
COMMENTS
Numbers n such that 2*n*(n^2+3) is a member of A001235.
19 and 3049 are the only prime numbers in this sequence for n < 10^5.
How is the graph of second differences of this sequence?
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..300
EXAMPLE
19 is a term because 18^3 + 20^3 = 13832 = 2^3 + 24^3.
PROG
(PARI) T = thueinit(x^3+1, 1);
isA001235(n) = my(v=thue(T, n)); sum(i=1, #v, v[i][1]>=0 && v[i][2]>=v[i][1])>1;
lista(nn) = for(n=1, nn, if(isA001235(2*n*(n^2+3)), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, May 09 2016
STATUS
approved