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”).

A294720
Palindromes in tribonacci sequence with initial values 0,1,0 (A001590).
0
0, 1, 2, 3, 6, 11, 7256527
OFFSET
1,3
COMMENTS
7256527 is probably the last term.
MATHEMATICA
a = c = 0; b = 1; lst = {0}; While[a < 10^100000, d = a + b + c; If[ Reverse[idn = IntegerDigits[n]] == idn], AppendTo[lst, d]]; a = b; b = c; c = d]; lst (* Robert G. Wilson v, Nov 09 2017 *)
CROSSREFS
KEYWORD
nonn,base,more,hard
AUTHOR
Chai Wah Wu, Nov 07 2017
STATUS
approved