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!)
A323620 Expansion of e.g.f. 2*sqrt(1 + x)*sinh(sqrt(5)*log(1 + x)/2)/sqrt(5). 3
0, 1, 0, 1, -4, 19, -108, 719, -5496, 47465, -457160, 4858865, -56490060, 713165035, -9715762980, 142069257055, -2219386098160, 36889108220305, -650018185589520, 12103669982341025, -237476572759473300, 4896758300881695875, -105866710959427454300, 2394660132226522508975 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n) = Sum_{k=0..n} Stirling1(n,k)*A000045(k).
From Vaclav Kotesovec, Jan 21 2019: (Start)
a(n) = -(-1)^n * cos(sqrt(5)*Pi/2) * (Gamma((3 + sqrt(5))/2) * Gamma(n - (1 + sqrt(5))/2) - Gamma((3 - sqrt(5))/2) * Gamma(n + (sqrt(5) - 1)/2)) / (Pi*sqrt(5)).
a(n) ~ -(-1)^n * n! / (sqrt(5) * Gamma((sqrt(5)-1)/2) * n^((3 - sqrt(5))/2)).
a(n) = -2*(n-2)*a(n-1) - (n^2 - 5*n + 5)*a(n-2). (End)
MATHEMATICA
FullSimplify[nmax = 23; CoefficientList[Series[2 Sqrt[1 + x] Sinh[Sqrt[5] Log[1 + x]/2]/Sqrt[5], {x, 0, nmax}], x] Range[0, nmax]!]
Table[Sum[StirlingS1[n, k] Fibonacci[k], {k, 0, n}], {n, 0, 23}]
PROG
(PARI) {a(n) = sum(k=0, n, stirling(n, k, 1)*fibonacci(k))};
vector(25, n, n--; a(n)) \\ G. C. Greubel, Feb 07 2019
(Magma) [(&+[StirlingFirst(n, k)*Fibonacci(k): k in [0..n]]): n in [0..25]]; // G. C. Greubel, Feb 07 2019
(Sage) [sum((-1)^(k+n)*stirling_number1(n, k)*fibonacci(k) for k in (0..n)) for n in (0..25)] # G. C. Greubel, Feb 07 2019
CROSSREFS
Sequence in context: A218183 A206227 A091643 * A306183 A241840 A199318
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jan 20 2019
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 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)