cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A294720 Palindromes in tribonacci sequence with initial values 0,1,0 (A001590).

Original entry on oeis.org

0, 1, 2, 3, 6, 11, 7256527
Offset: 1

Views

Author

Chai Wah Wu, Nov 07 2017

Keywords

Comments

7256527 is probably the last term.

Crossrefs

Programs

  • Mathematica
    a = c = 0; b = 1; lst = {0}; While[a < 10^7, d = a + b + c; If[ Reverse[idn = IntegerDigits[d]] == idn, AppendTo[lst, d]]; a = b; b = c; c = d]; lst (* Robert G. Wilson v, Nov 09 2017 *)