login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A076677
a(0)=a(1)=1 a(n)=a(n-1)+floor(sqrt(a(n-2))).
3
1, 1, 2, 3, 4, 5, 7, 9, 11, 14, 17, 20, 24, 28, 32, 37, 42, 48, 54, 60, 67, 74, 82, 90, 99, 108, 117, 127, 137, 148, 159, 171, 183, 196, 209, 223, 237, 251, 266, 281, 297, 313, 330, 347, 365, 383, 402, 421, 441, 461, 482, 503, 524, 546, 568, 591, 614, 638, 662
OFFSET
0,3
FORMULA
a(n) is asymptotic to n^2/4
MATHEMATICA
RecurrenceTable[{a[0]==a[1]==1, a[n]==a[n-1]+Floor[Sqrt[a[n-2]]]}, a, {n, 60}] (* Harvey P. Dale, Jul 28 2018 *)
CROSSREFS
Sequence in context: A337334 A375606 A008750 * A029001 A161306 A266744
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 25 2002
STATUS
approved