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!)
A349466 Expansion of 1/((1-12*x)*(1-16*x)*(1-18*x)*(1-24*x)). 1
1, 70, 3100, 111160, 3529456, 103663840, 2887307200, 77450369920, 2021488750336, 51703366274560, 1302470537804800, 32436048076257280, 800745898476630016, 19636648385968660480, 479101382689537638400, 11643791435175823114240, 282140675279022464106496 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) = p(n+4,4)*(4!)^(n+1) where p(n+4,4) represents the probability that, given n+4 random numbers in [0, 1], there exists a 4-tuple whose sum is smaller than 1. A recurrence formula for p(n,k) is p(n, k) = (1/k)*p(n-1, k-1) + (1-1/k)*p(n-1, k). The generating function for p(n,k) is Sum_{n=k..oo} p(n,k)x^n = (x^k)/(k!*(1-x)*(1-(1/2)*x)*(1-((k-1)/k)*x)). The explicit formula for p(n,k) is p(n,k)= 1+(1/(k-1)!)*Sum_{i=1..(k-1)} ((-1)^(k-i))*binomial(k-1, i) * (i^n)* ((i+1)^(-n+k-1)).
LINKS
FORMULA
a(n) = 24^(n+1) - (2^n)*(3^(2*n+4)) - (2^(2*n+1))*(3^(n+1)) + 2^(4*n+6).
G.f.: 1/((1-(1/2)*4!*x)*(1-(2/3)*4!*x)*(1-(3/4)*4!*x)*(1-4!*x)).
a(n) = 2^n * A028212(n) = A000079(n) * A028212(n).
E.g.f.: exp(12*x)*(24*exp(12*x) - 81*exp(6*x) + 64*exp(4*x) - 6). - Stefano Spezia, Nov 21 2021
a(n) = 24*24^n + 64*2^(4*n) - 81*18^n - 6*12^n. - Chai Wah Wu, Dec 27 2021
MATHEMATICA
CoefficientList[Series[1/((1 - 12 x) (1 - 16 x) (1 - 18 x) (1 - 24 x)), {x, 0, 20}], x]
LinearRecurrence[{70, -1800, 20160, -82944}, {1, 70, 3100, 111160}, 20] (* Harvey P. Dale, Apr 30 2023 *)
PROG
(Python)
def A349466(n): return 24*24**n + 64*2**(4*n) - 81*18**n - 6*12**n # Chai Wah Wu, Dec 27 2021
CROSSREFS
Other sequences for p(n+k,k)*(k!)^(n+1) include: A000225 (k=2), A016765 (k=3).
Sequence in context: A213468 A004377 A069296 * A075923 A089274 A266739
KEYWORD
nonn,easy
AUTHOR
Hsin-Hui Judy Chiang, Yifan Zhang and Wei Wang, Nov 18 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 18 09:35 EDT 2024. Contains 371779 sequences. (Running on oeis4.)