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.

A082026 a(1)=5; a(n) is concatenation of squares of digits in a(n-1) (in base 10).

Original entry on oeis.org

5, 25, 425, 16425, 13616425, 193613616425, 181936193613616425, 164181936181936193613616425, 13616164181936164181936181936193613616425, 19361361361616418193613616164181936164181936181936193613616425
Offset: 1

Views

Author

Matthew Vandermast, Apr 01 2003

Keywords

Comments

If m is a member of the sequence represented by k digits in base 10, all members greater than m are congruent to m mod 10^k.

Examples

			The squares of the digits in the third term, 425, are 16, 4 and 25; hence a(4)=16425.
		

Crossrefs

Cf. A061588.

Programs

  • Mathematica
    NestList[FromDigits[Flatten[IntegerDigits[IntegerDigits[#]^2]]] &, 5, 10] (* Paolo Xausa, Jan 10 2025 *)