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!)
A298400 a(n) = a(n-1) + a(n-2) - n*a(floor(n/2)), where a(0) = 1, a(1) = 1, a(2) = 1. 3
1, 1, 1, -1, -4, -10, -8, -11, 13, 38, 151, 299, 546, 949, 1649, 2763, 4204, 6746, 10266, 16290, 23536, 36655, 53613, 83391, 123900, 193641, 292867, 460885, 707580, 1120644, 1745334, 2780325, 4391131, 7032724, 11194491, 17991105, 28816020, 46427283, 74624283 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
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] - n*a[Floor[n/2]];
Table[a[n], {n, 0, 30}] (* A298400 *)
CROSSREFS
Sequence in context: A014476 A080362 A365781 * A070295 A123483 A073722
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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)