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.

A080162 Wonderful Demlo numbers A002477 whose digit sums are squares.

Original entry on oeis.org

1, 121, 12321, 1234321, 123454321, 12345654321, 1234567654321, 123456787654321, 12345678987654321, 12345679012345679012345679012345678987654320987654320987654320987654321
Offset: 1

Views

Author

Eric W. Weisstein, Jan 31 2003

Keywords

Comments

The next term (a(11)) has 101 digits. - Harvey P. Dale, Jun 16 2025

Crossrefs

Programs

  • Mathematica
    Select[LinearRecurrence[{111,-1110,1000},{1,121,12321},40],IntegerQ[Sqrt[Total[IntegerDigits[#]]]]&] (* Harvey P. Dale, Jun 16 2025 *)
  • PARI
    for(k=1,100,my(d=((10^k-1)/9)^2); issquare(sumdigits(d)) && print1(d,", ")) \\ Jeppe Stig Nielsen, May 27 2023