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”).

A076678
a(0)=a(1)=1 a(n)=floor(sqrt(a(n-1)))+a(n-2).
4
1, 1, 2, 2, 3, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 17, 19, 21, 23, 25, 28, 30, 33, 35, 38, 41, 44, 47, 50, 54, 57, 61, 64, 69, 72, 77, 80, 85, 89, 94, 98, 103, 108, 113, 118, 123, 129, 134, 140, 145, 152, 157, 164, 169, 177, 182, 190, 195, 203, 209, 217, 223, 231, 238
OFFSET
0,3
FORMULA
a(n) is asymptotic to n^2/16
MATHEMATICA
RecurrenceTable[{a[0]==a[1]==1, a[n]==Floor[Sqrt[a[n-1]]]+a[n-2]}, a, {n, 70}] (* Harvey P. Dale, Apr 28 2014 *)
CROSSREFS
Sequence in context: A237119 A011881 A366853 * A029024 A328188 A358637
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 25 2002
STATUS
approved