login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A155985 a(1)=1, then a(n) is the smallest square not occurring earlier, not ending with zero and starting with the last digit of a(n-1). 4
1, 16, 64, 4, 49, 9, 961, 121, 144, 441, 169, 9025, 529, 9216, 625, 576, 676, 6084, 484, 4096, 6241, 196, 6561, 1024, 4225, 5041, 1089, 9409, 9604, 4356, 6724, 4489, 9801, 1156, 6889, 90601, 1225, 5184, 4624, 4761, 1296, 60025, 5329, 91204, 40401, 1369 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
David A. Corneth, PARI program
PROG
(PARI) nxt(va, d) = {my(k=1); while ((digits(k^2)[1]!=d) || !(k%10) || #select(x->(x==k^2), va), k++); k^2; }
lista(nn) = {my(va = vector(nn)); va[1] = 1; for (n=2, nn, va[n] = nxt(va, Vecrev(digits(va[n-1]))[1]); ); va; } \\ Michel Marcus, Sep 04 2020
(PARI) See Corneth link \\ David A. Corneth, Sep 05 2020
CROSSREFS
Cf. A076653 (similar, with primes), A155986.
Sequence in context: A076751 A215969 A333663 * A211222 A250102 A322032
KEYWORD
nonn,easy,base
AUTHOR
Zak Seidov, Feb 01 2009
EXTENSIONS
Name edited by Michel Marcus, Sep 04 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 17:25 EDT 2024. Contains 371254 sequences. (Running on oeis4.)