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!)
A173538 a(n) = a(n-1) + a(n-2) - [a(n-2)/4] - [a(n-3)/2] - [a(n-4)/4]. 1
1, 1, 2, 3, 5, 7, 10, 14, 18, 23, 28, 34, 40, 47, 53, 61, 68, 77, 85, 94, 103, 113, 123, 134, 146, 158, 171, 184, 198, 212, 227, 241, 257, 272, 289, 305, 322, 339, 357, 375, 394, 414, 434, 455, 476, 498, 520, 543, 565, 589, 612 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The limiting ratio a(n+1)/a(n) at the 500th iteration is:1.0039960716583698
LINKS
FORMULA
a(n)=a(n-1)+a(n-2)-Floor[a(n-2)/4]-Floor[a(n-3)/2]-Floor[a(n-4)/4]
MATHEMATICA
f[-2] = 0; f[-1] = 0; f[0] = 1; f[1] = 1;
f[n_] := f[n] = f[n -
1] + f[n - 2] - Floor[f[n - 2]/4] - Floor[f[n - 3]/2] - Floor[f[n - 4]/4]
Table[f[n], {n, 0, 50}]
CROSSREFS
Sequence in context: A308388 A019529 A194242 * A130053 A177277 A025488
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Nov 23 2010
STATUS
approved

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