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

A043328
a(0)=1; a(1)=1; a(n)= a(n-1) + floor(sqrt(a(n-1)*a(n-2))) + floor(sqrt(a(n-3)*a(n-4))) + ....
1
1, 1, 2, 3, 6, 11, 22, 42, 83, 162, 318, 623, 1224, 2402, 4717, 9261, 18185, 35706, 70111, 137665, 270313, 530772, 1042200, 2046413, 4018242, 7890029, 15492492, 30420327, 59731927, 117286804, 230298862, 452204027, 887926594, 1743490958
OFFSET
0,3
COMMENTS
Nonlinear recurrence similar to that for Narayana numbers.
MATHEMATICA
a[ 0 ]=0; a[ 1 ]=1; a[ 2 ]=1; a[ n_Integer ] := a[ n ]=a[ n-1 ]+ Plus@@Map[ Floor[ Sqrt[ Times@@# ] ]&, Partition[ Reverse[ Array[ a, n, 0 ] ], 2 ] ]
CROSSREFS
Sequence in context: A123341 A372989 A238351 * A141072 A002083 A124973
KEYWORD
nonn,easy
AUTHOR
Olivier Gérard, Jul 18 2001.
STATUS
approved

  NODES
COMMUNITY 1
INTERN 1