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!)
A037140 Convolution of natural numbers n >= 1 with Fibonacci numbers F(k), for k >= 5. 3
5, 18, 44, 91, 172, 308, 533, 902, 1504, 2483, 4072, 6648, 10821, 17578, 28516, 46219, 74868, 121228, 196245, 317630, 514040, 831843, 1346064, 2178096, 3524357, 5702658, 9227228, 14930107, 24157564, 39087908, 63245717, 102333878, 165579856, 267914003 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = Fibonacci(n+9) - (29+8*n).
G.f.: (5+3*x)/((1-x-x^2)*(1-x)^2).
MATHEMATICA
Table[Fibonacci[n+9] -8*n-29, {n, 0, 40}] (* G. C. Greubel, Jul 05 2019 *)
PROG
(PARI) vector(40, n, n--; fibonacci(n+9) -8*n-29) \\ G. C. Greubel, Jul 05 2019
(Magma) [Fibonacci(n+9) -8*n-29: n in [0..40]]; // G. C. Greubel, Jul 05 2019
(Sage) [fibonacci(n+9) -8*n-29 for n in (0..40)] # G. C. Greubel, Jul 05 2019
(GAP) List([0..40], n-> Fibonacci(n+9) -8*n-29) # G. C. Greubel, Jul 05 2019
CROSSREFS
Sequence in context: A160969 A213397 A101105 * A321049 A007237 A327842
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
Corrected by Franklin T. Adams-Watters, Oct 25 2006
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 May 12 06:47 EDT 2024. Contains 372432 sequences. (Running on oeis4.)