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.

A074238 Numbers k such that the sum of the reverses of 1,2,...,k is a perfect square.

Original entry on oeis.org

1, 8, 26, 53, 3087, 6173, 8091, 12330, 18358, 42898, 294847, 27382381, 49290155, 426131190, 1350661780, 3161620702, 4461944219, 17625479383, 40766706170, 61554358125, 270930998357
Offset: 1

Views

Author

Joseph L. Pe, Sep 19 2002

Keywords

Comments

a(22) > 5*10^11. - Giovanni Resta, Apr 16 2017

Examples

			reverse(1) + reverse(2) + ... + reverse(25) + reverse(26) = 1 + 2 + ...+ 52 + 62 = 729 = 27^2, so 26 is a term of the sequence.
		

Crossrefs

Cf. A062918.

Programs

  • Mathematica
    s = 0; r = {}; For[i = 1, i <= 10^5, i++, s = s + FromDigits[Reverse[IntegerDigits[i]]]; If[IntegerQ[s^(1/2)], r = Append[r, i]]]; r

Extensions

a(11)-a(21) from Giovanni Resta, Apr 16 2017