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!)
A084949 a(n) = Product_{i=0..n-1} (9*i+2). 13
1, 2, 22, 440, 12760, 484880, 22789360, 1276204160, 82953270400, 6138542009600, 509498986796800, 46873906785305600, 4734264585315865600, 520769104384745216000, 61971523421784680704000, 7932354997988439130112000, 1086732634724416160825344000, 158662964669764759480500224000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A084944(n)/A000142(n)*A000079(n) = 9^n*Pochhammer(2/9, n) = 9^n*Gamma(n+2/9)/Gamma(2/9).
a(n) = (-7)^n*Sum_{k=0..n} (9/7)^k*s(n+1,n+1-k), where s(n,k) are the Stirling numbers of the first kind, A048994. - Mircea Merca, May 03 2012
E.g.f.: (1-9*x)^(-2/9). - Robert Israel, Mar 22 2017
D-finite with recurrence: a(n) +(-9*n+7)*a(n-1)=0. - R. J. Mathar, Jan 20 2020
Sum_{n>=0} 1/a(n) = 1 + (e/9^7)^(1/9)*(Gamma(2/9) - Gamma(2/9, 1/9)). - Amiram Eldar, Dec 21 2022
MAPLE
a:= n-> product(9*i+2, i=0..n-1); seq(a(j), j=0..20);
MATHEMATICA
Table[9^n*Pochhammer[2/9, n], {n, 0, 20}] (* G. C. Greubel, Aug 19 2019 *)
PROG
(PARI) vector(20, n, n--; prod(k=0, n-1, 9*k+2)) \\ G. C. Greubel, Aug 19 2019
(Magma) [1] cat [(&*[9*k+2: k in [0..n-1]]): n in [1..20]]; // G. C. Greubel, Aug 19 2019
(Sage) [product(9*k+2 for k in (0..n-1)) for n in (0..20)] # G. C. Greubel, Aug 19 2019
(GAP) List([0..20], n-> Product([0..n-1], k-> 9*k+2) ); # G. C. Greubel, Aug 19 2019
CROSSREFS
Sequence in context: A266522 A360304 A354943 * A276454 A137076 A090730
KEYWORD
easy,nonn
AUTHOR
Daniel Dockery (peritus(AT)gmail.com), Jun 13 2003
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 March 29 06:57 EDT 2024. Contains 371265 sequences. (Running on oeis4.)