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!)
A135754 E.g.f.: A(x) = Sum_{n>=0} exp((4^n-1)/3*x)*x^n/n!. 5
1, 1, 3, 19, 239, 6091, 305023, 30818299, 6155906879, 2484667187371, 1989929726352863, 3221489148102557179, 10362312712649347408159, 67345216546226371822133611, 869978904614825017953532433663 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} C(n,k)*[(4^k-1)/3]^(n-k).
a(n) ~ c * 2^(n^2/2+n+1/2)/(3^(n/2)*sqrt(Pi*n)), where c = Sum_{k = -infinity..infinity} 3^k*4^(-k^2) = 1.86902676808473931... if n is even and c = Sum_{k = -infinity..infinity} 3^(k+1/2)*4^(-(k+1/2)^2) = 1.87384213421283135... if n is odd. - Vaclav Kotesovec, Jun 25 2013
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n, k]*((4^k-1)/3)^(n-k), {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Jun 25 2013 *)
PROG
(PARI) a(n)=sum(k=0, n, binomial(n, k)*((4^k-1)/3)^(n-k))
(PARI) a(n)=n!*polcoeff(sum(k=0, n, exp((4^k-1)/3*x)*x^k/k!), n)
CROSSREFS
Cf. variants: A001831, A135753.
Sequence in context: A230316 A157675 A355216 * A340225 A118023 A054590
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 27 2007
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 23 01:19 EDT 2024. Contains 371906 sequences. (Running on oeis4.)