[go: up one dir, main page]

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!)
A035277 One eighth of deca-factorial numbers. 10
1, 18, 504, 19152, 919296, 53319168, 3625703424, 282804867072, 24886828302336, 2438909173628928, 263402190751924224, 31081458508727058432, 3978426689117063479296, 549022883098154760142848, 81255386698526904501141504, 12838351098367250911180357632 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (Pochhammer(8/10,n)*10^n)/8.
8*a(n) = (10*n-2)(!^10) = Product_{j=1..n} (10*j-2).
a(n) = 2^(n+2)*A034301(n) where 4*A034301(n) = (5*n-1)(!^5).
E.g.f.: (-1 + (1-10*x)^(-4/5))/8.
Sum_{n>=1} 1/a(n) = 8*(e/10^2)^(1/10)*(Gamma(4/5) - Gamma(4/5, 1/10)). - Amiram Eldar, Dec 22 2022
MAPLE
seq( mul(10*j-2, j=1..n)/8, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Table[10^n*Pochhammer[4/5, n]/8, {n, 20}] (* G. C. Greubel, Nov 11 2019 *)
PROG
(PARI) vector(20, n, prod(j=1, n, 10*j-2)/8 ) \\ G. C. Greubel, Nov 11 2019
(Magma) [(&*[10*j-2: j in [1..n]])/8: n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [product( (10*j-2) for j in (1..n))/8 for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> Product([1..n], j-> 10*j-2)/8 ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A035023 A180791 A126276 * A011906 A255859 A334179
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 August 29 17:51 EDT 2024. Contains 375518 sequences. (Running on oeis4.)