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!)
A298401 a(n) = a(n-1) + a(n-2) - n*a(floor(n/2)), where a(0) = 1, a(1) = 2, a(2) = 3. 3
1, 2, 3, -1, -10, -26, -30, -49, 1, 42, 303, 631, 1294, 2315, 4295, 7345, 11624, 18952, 29820, 47974, 71734, 113345, 171197, 270029, 410170, 647849, 997829, 1583173, 2460742, 3919360, 6159752, 9851417, 15639201, 25107026, 40101859, 64545565, 103573904 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
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] = 2; a[2] = 3;
a[n_] := a[n] = a[n - 1] + a[n - 2] - n*a[Floor[n/2]];
Table[a[n], {n, 0, 30}] (* A298401 *)
CROSSREFS
Sequence in context: A322702 A107855 A211019 * A009026 A046222 A291647
KEYWORD
easy,sign
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)