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!)
A298354 a(n) = a(n-1) + a(n-2) + 2 a([(n-1)/2]), where a(0) = 1, a(1) = 1, a(2) = 1. 2
1, 1, 1, 4, 7, 13, 22, 43, 73, 130, 217, 373, 616, 1033, 1693, 2812, 4591, 7549, 12286, 20095, 32641, 53170, 86245, 140161, 227152, 368545, 596929, 967540, 1566535, 2537461, 4107382, 6650467, 10763473, 17423122, 28195777, 45633997, 73844872, 119503441 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n)/a(n-1) -> (1 + sqrt(5))/2, the golden ratio (A001622), so that (a(n)) has the growth rate of the Fibonacci numbers (A000045). See A298338 for a guide to related sequences.
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = a[n - 1] + a[n - 2] + 2 a[Floor[(n-1)/2]];
Table[a[n], {n, 0, 30}] (* A298354 *)
CROSSREFS
Sequence in context: A156622 A111314 A316861 * A139217 A038391 A073832
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 10 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 April 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)