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!)
A002984 a(0) = 1; for n > 0, a(n) = a(n-1) + floor(sqrt(a(n-1))).
(Formerly M0554)
9

%I M0554 #57 Feb 14 2024 15:03:34

%S 1,2,3,4,6,8,10,13,16,20,24,28,33,38,44,50,57,64,72,80,88,97,106,116,

%T 126,137,148,160,172,185,198,212,226,241,256,272,288,304,321,338,356,

%U 374,393,412,432,452,473,494,516,538,561,584,608,632,657,682,708,734

%N a(0) = 1; for n > 0, a(n) = a(n-1) + floor(sqrt(a(n-1))).

%C For n > 3 we have a(n) < n^2/4; for n > 44 we have a(n) > n^2/5. - _Stefan Steinerberger_, Apr 17 2006

%C This sequence contains infinitely many squares. - _Philippe Deléham_, Apr 03 2009

%C The squares in this sequence are precisely the powers of 4. - _Franklin T. Adams-Watters_, Jan 06 2014

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A002984/b002984.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n+1) = a(n) + A000196(a(n)). - _Reinhard Zumkeller_, Dec 28 2011

%F Conjecture: a(n) ~ n^2/4. - _José María Grau Ribas_, Feb 13 2024

%t NestList[ # + Floor[ Sqrt[ # ] ] &, 1, 50 ]

%o (Haskell)

%o a002984 n = a002984_list !! n

%o a002984_list = iterate (\x -> x + a000196 x) 1

%o -- _Reinhard Zumkeller_, Dec 28 2011

%o (Magma) [n le 0 select 1 else Self(n)+Floor(Sqrt(Self(n))): n in [0..60]]; // _Bruno Berselli_, Feb 15 2013

%Y Cf. A000302 (subsequence of squares).

%Y Essentially the same as A109965.

%K nonn,easy,nice

%O 0,2

%A _N. J. A. Sloane_

%E More terms from Larry Reeves (larryr(AT)acm.org), Dec 14 2000

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)