login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A074238 Numbers n such that the sum of the reverses of 1,2,...,n is a perfect square. 0
1, 8, 26, 53, 3087, 6173, 8091, 12330, 18358, 42898 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

EXAMPLE

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

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

CROSSREFS

Cf. A062918.

Sequence in context: A138502 A143894 A126176 * A126264 A085690 A005897

Adjacent sequences:  A074235 A074236 A074237 * A074239 A074240 A074241

KEYWORD

base,nonn

AUTHOR

Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Sep 19 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 02:51 EST 2012. Contains 205860 sequences.