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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A061099 Perfect squares with final digit sum = 1. 1
1, 64, 100, 289, 361, 676, 784, 1225, 1369, 1936, 2116, 2809, 3025, 3844, 4096, 5041, 5329, 6400, 6724, 7921, 8281, 9604, 10000, 11449, 11881, 13456, 13924, 15625, 16129, 17956, 18496, 20449, 21025, 23104, 23716, 25921, 26569, 28900, 29584 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

REFERENCES

Amarnath Murthy, Fabricating a perfect square with a given valid digit sum (to be published)

LINKS

Harry J. Smith, Table of n, a(n) for n=0,...,1000

M. L. Perez et al., eds., Smarandache Notions Journal

EXAMPLE

289= 17^2, 2+8+9 = 19, 1+9 =1, 1369=37^2, 1+3+6+9 = 19, 1+9 =1

PROG

(PARI) { b=0; for (n=0, 1000, until (s==1, b++; s=b^2; s-=9*(s\9)); write("b061099.txt", n, " ", b^2) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 19 2009]

(PARI) SumD(x)= { s=0; while (x>9, s=s+x-10*(x\10); x=x\10); return(s + x) } { b=0; for (n=0, 1000, s=2; while (s!= 1, b++; s=b^2; while (s>9, s=SumD(s))); write("b061099.txt", n, " ", b^2) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 17 2009]

CROSSREFS

A056991.

Sequence in context: A046306 A175163 A104022 * A118488 A088033 A039481

Adjacent sequences:  A061096 A061097 A061098 * A061100 A061101 A061102

KEYWORD

nonn,base

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Apr 19 2001

EXTENSIONS

More terms from Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 17 2009

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 14 16:42 EST 2012. Contains 205635 sequences.