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!)
A347012 E.g.f.: exp(x) / (1 - 4 * x)^(1/4). 3
1, 2, 8, 64, 800, 13376, 278272, 6914048, 199629824, 6566164480, 242327576576, 9915111636992, 445432721932288, 21795710738038784, 1153805878313615360, 65700181140859518976, 4004182878034473254912, 260071258357260225609728, 17932703649301871611346944 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of A007696.
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k) * A007696(k).
a(n) ~ n! * exp(1/4) * 4^n / (Gamma(1/4) * n^(3/4)). - Vaclav Kotesovec, Aug 14 2021
MAPLE
g:= proc(n) option remember; `if`(n<2, 1, (4*n-3)*g(n-1)) end:
a:= n-> add(binomial(n, k)*g(k), k=0..n):
seq(a(n), n=0..18); # Alois P. Heinz, Aug 10 2021
MATHEMATICA
nmax = 18; CoefficientList[Series[Exp[x]/(1 - 4 x)^(1/4), {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[Binomial[n, k] 4^k Pochhammer[1/4, k], {k, 0, n}], {n, 0, 18}]
Table[HypergeometricU[1/4, n + 5/4, 1/4]/Sqrt[2], {n, 0, 18}]
CROSSREFS
Sequence in context: A092934 A224801 A191571 * A139679 A005640 A153540
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 10 2021
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 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)