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!)
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

%I #5 Mar 30 2012 17:20:57

%S 1,1,2,3,6,11,22,42,83,162,318,623,1224,2402,4717,9261,18185,35706,

%T 70111,137665,270313,530772,1042200,2046413,4018242,7890029,15492492,

%U 30420327,59731927,117286804,230298862,452204027,887926594,1743490958

%N 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))) + ....

%C Nonlinear recurrence similar to that for Narayana numbers.

%t 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 ] ]

%Y Cf. A002083, A043327.

%K nonn,easy

%O 0,3

%A _Olivier GĂ©rard_, Jul 18 2001.

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 19 05:02 EDT 2024. Contains 371782 sequences. (Running on oeis4.)