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.

A081938 a(1) = 1, a(n) = smallest palindromic number > a(n-1) of the form k*a(n-1) - 1.

Original entry on oeis.org

1, 2, 3, 5, 9, 44, 131, 602206, 39293339293, 98576836066063867589
Offset: 1

Views

Author

Amarnath Murthy, Apr 02 2003

Keywords

Crossrefs

Cf. A081939.

Programs

  • Mathematica
    nxt[n_]:=Module[{k=2},While[!PalindromeQ[k*n-1],k++];k*n-1]; Join[{1}, NestList[ nxt,2,8]] (* Harvey P. Dale, Oct 05 2018 *)

Extensions

a(8) and a(9) from R. J. Mathar, Jul 15 2007
a(10) from Donovan Johnson, Mar 26 2011