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.

A119866 Numbers whose square starts with 5 identical digits.

Original entry on oeis.org

10541, 33334, 47141, 57735, 66667, 105409, 105410, 105411, 105412, 105413, 149071, 149072, 149073, 182574, 182575, 182576, 210818, 210819, 235702, 235703, 258198, 258199, 278886, 278887, 298141, 298142, 316227, 333332, 333333, 333334
Offset: 1

Views

Author

Zak Seidov, Aug 04 2006

Keywords

Examples

			10541^2=111112681, 33334^2=1111155556.
		

Crossrefs

Programs

  • Mathematica
    Select[ Range[ 100, 500000 ], Length[ Union[ Take[ IntegerDigits[ #^2 ], 5 ] ] ] == 1 & ] (* Jonathan Vos Post, Aug 29 2007 *)