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

A298417
a(n) = 2*a(n-1) + 2*a(n-2) + a([n/2]), where a(0) = 1, a(1) = 1, a(2) = 1.
2
1, 1, 1, 5, 13, 37, 105, 289, 801, 2193, 6025, 16473, 45101, 123253, 336997, 920789, 2516373, 6875125, 18785189, 51322821, 140222045, 383095757, 1046652077, 2859512141, 7812373537, 21343816457, 58312503241, 159312762649, 435250868777, 1189127599849
OFFSET
0,4
COMMENTS
a(n)/a(n-1) -> 1+sqrt(3).
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = 2 a[n - 1] + 2 a[n - 2] + a[Floor[n/2]];
Table[a[n], {n, 0, 30}] (* A298417 *)
CROSSREFS
Sequence in context: A083413 A232879 A269803 * A193642 A220709 A182312
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 11 2018
STATUS
approved