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!)
A175627 a(1) = 1; a(n) is the smallest square > 2*a(n-1). 2
1, 4, 9, 25, 64, 144, 289, 625, 1296, 2601, 5329, 10816, 21904, 44100, 88209, 177241, 355216, 710649, 1423249, 2849344, 5702544, 11410884, 22829284, 45670564, 91355364, 182736324, 365497924, 730999369, 1462068169, 2924213776, 5848578576, 11697287716, 23394620209, 46789583481 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (ceiling(sqrt(2*a(n-1))))^2.
lim_{n->oo} (a(n+1)/a(n)) = 2.
MATHEMATICA
NestList[(Floor[Sqrt[2#]]+1)^2&, 1, 40] (* Harvey P. Dale, Jul 26 2017 *)
PROG
(PARI) {a=1; print1(a, ", "); for(i=1, 40, a=(ceil(sqrt(2*a)))^2; print1(a, ", "))} /* Zak Seidov, Dec 04 2010 */
CROSSREFS
Cf. A055496.
Sequence in context: A032127 A181357 A244558 * A007598 A121648 A133022
KEYWORD
nonn,easy
AUTHOR
Ctibor O. Zizka, Dec 04 2010
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)