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

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