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.

A124628 Numbers n such that n^3 is zeroless pandigital.

Original entry on oeis.org

1903, 2257, 2589, 2691, 2842, 2866, 3024, 3159, 3166, 3195, 3598, 3658, 3793, 3908, 4335, 4874, 5032, 5224, 5503, 5596, 5703, 5812, 6009, 6023, 6259, 6289, 6437, 6486, 6645, 7446, 7497, 7592, 7821, 7846, 7899, 8056, 8066, 8166, 8168, 8662, 8677, 8873
Offset: 1

Views

Author

Tanya Khovanova, Dec 21 2006

Keywords

Examples

			1903^3 = 6891541327 (contains all the digits 1 through 9 and doesn't contain 0).
		

Crossrefs

Cf. A119735 Numbers n such that every digit occurs at least once in n^3.

Programs

  • Mathematica
    Select[Range[10000], Union[IntegerDigits[ #^3]] == {1, 2, 3, 4, 5, 6, 7, 8, 9} &]