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.

A214426 Numbers n palindromic in exactly four bases b, 2 <= b <= 10.

Original entry on oeis.org

8, 121, 373, 786435
Offset: 1

Views

Author

T. D. Noe, Jul 18 2012

Keywords

Comments

Searched up to 10^18. Rick Regan mentions these four numbers, also found by Bill Beckmann, at the end of his webpage. - T. D. Noe, Aug 18 2012

Examples

			8 is palindromic in bases 3, 7, 9, and 10.
121 is palindromic in bases 3, 7, 8, and 10.
373 is palindromic in bases 4, 7, 9, and 10.
786435 is palindromic in bases 2, 4, 7, and 8.
		

Crossrefs

Cf. A050813, A214423, A214424, A214425 (palindromic in 0-3 bases).

Programs

  • Mathematica
    n = -1; t = {}; While[Length[t] < 4, n++; If[Count[Table[s = IntegerDigits[n, m]; s == Reverse[s], {m, 2, 10}], True] == 4, AppendTo[t, n]]]; t

Formula

A050812(n) = 4.