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!)
A035265 One half of deca-factorial numbers. 5
1, 12, 264, 8448, 354816, 18450432, 1143926784, 82362728448, 6753743732736, 621344423411712, 63377131187994624, 7098238693055397888, 865985120552758542336, 114310035912964127588352, 16232025099640906117545984, 2467267815145417729866989568, 399697386053557672238452310016 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
2*a(n) = (10*n-8)(!^10) = Product_{j=1..n} (10*j-8).
a(n) = 2^n*A008548(n) where A008548(n) = (5*n-4)(!^5) = Product_{j=1..n} (5*j-4).
E.g.f.: (-1 + (1-10*x)^(-1/5))/2.
a(n) = (Pochhammer(2/10,n)*10^n)/2.
Sum_{n>=1} 1/a(n) = 2*(e/10^8)^(1/10)*(Gamma(1/5) - Gamma(1/5, 1/10)). - Amiram Eldar, Dec 22 2022
MAPLE
seq( mul(10*j-8, j=1..n)/2, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Table[10^n*Pochhammer[2/10, n]/2, {n, 20}] (* G. C. Greubel, Nov 11 2019 *)
PROG
(PARI) vector(20, n, prod(j=1, n, 10*j-8)/2 ) \\ G. C. Greubel, Nov 11 2019
(Magma) [(&*[10*j-8: j in [1..n]])/2: n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [product( (10*j-8) for j in (1..n))/2 for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> Product([1..n], j-> 10*j-8)/2 ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A295844 A113672 A259269 * A167869 A068271 A068283
KEYWORD
easy,nonn
AUTHOR
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 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)