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!)
A372015 Product of Fibonacci and self-convolution of Fibonacci numbers: a(n) = A000045(n+1)*A001629(n+1). 0
0, 1, 4, 15, 50, 160, 494, 1491, 4420, 12925, 37380, 107136, 304764, 861445, 2421700, 6775755, 18879734, 52413856, 145038890, 400183575, 1101277060, 3023462521, 8282790024, 22646131200, 61805595000, 168399404425, 458128878724, 1244567262471, 3376576740410, 9149594423200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = F(n+1)*((n+2)*F(n) + (n)*F(n+2))/5 where F(n) = A000045(n) is the Fibonacci numbers.
G.f.: x*(1-x)/((1+x)*(1-3*x+x^2)^2).
MAPLE
a := proc(n) option remember; if n < 3 then return n^2 fi;
-((2 - 2*n^2 + n)*a(n - 1) + (1 - 2*n^2 + 3*n)*a(n - 2) + n^2*a(n - 3))/(n - 1)^2 end: seq(a(n), n = 0..29); # Peter Luschny, Apr 16 2024
MATHEMATICA
CoefficientList[Series[x(1-x)/((1+x)*(1-3*x+x^2)^2), {x, 0, 29}], x] (* Stefano Spezia, Apr 16 2024 *)
CROSSREFS
Sequence in context: A143215 A301973 A132308 * A026110 A056327 A026328
KEYWORD
nonn,easy
AUTHOR
Vladimir Kruchinin, Apr 15 2024
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 30 22:38 EDT 2024. Contains 372141 sequences. (Running on oeis4.)