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!)
A298412 a(n) = 2*a(n-1) + a(n-2) + a([n/2]), where a(0) = 1, a(1) = 1, a(2) = 1. 1
1, 1, 1, 4, 10, 25, 64, 157, 388, 943, 2299, 5566, 13495, 32620, 78892, 190561, 460402, 1111753, 2684851, 6482398, 15651946, 37788589, 91234690, 220263535, 531775255, 1283827540, 3099462955, 7482786070, 18065113987, 43613092936, 105291490420, 254196264337 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n)/a(n-1) -> 1 + sqrt(2).
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = 2 a[n - 1] + a[n - 2] + a[Floor[n/2]];
Table[a[n], {n, 0, 30}] (* A298412 *)
CROSSREFS
Cf. A298338.
Sequence in context: A020709 A020734 A225301 * A289245 A347725 A097136
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 11 2018
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 September 6 15:39 EDT 2024. Contains 375715 sequences. (Running on oeis4.)