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!)
A034325 a(n) is the n-th quintic factorial number divided by 5. 11
1, 10, 150, 3000, 75000, 2250000, 78750000, 3150000000, 141750000000, 7087500000000, 389812500000000, 23388750000000000, 1520268750000000000, 106418812500000000000, 7981410937500000000000, 638512875000000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Norihiro Nakashima and Shuhei Tsujie, Enumeration of Flats of the Extended Catalan and Shi Arrangements with Species, arXiv:1904.09748 [math.CO], 2019.
FORMULA
5*a(n) = (5*n)(!^5) = Product_{j=1..n} 5*j = 5^(n-1)*n!.
E.g.f.: (-1 + (1-5*x)^(-1))/5, a(0) = 0.
D-finite with recurrence: a(n) - 5*n*a(n-1) = 0. - R. J. Mathar, Feb 24 2020
From Amiram Eldar, Jan 08 2022: (Start)
Sum_{n>=1} 1/a(n) = 5*(exp(1/5)-1).
Sum_{n>=1} (-1)^(n+1)/a(n) = 5*(1-exp(-1/5)). (End)
MAPLE
seq(5^(n-1)*n!, n=1..20); # G. C. Greubel, Aug 23 2019
MATHEMATICA
Array[5^(# - 1) #! &, 16] (* Michael De Vlieger, May 30 2019 *)
PROG
(PARI) vector(20, n, 5^(n-1)*n!) \\ G. C. Greubel, Aug 23 2019
(Magma) [5^(n-1)*Factorial(n): n in [1..20]]; // G. C. Greubel, Aug 23 2019
(Sage) [5^(n-1)*factorial(n) for n in (1..20)] # G. C. Greubel, Aug 23 2019
(GAP) List([1..20], n-> 5^(n-1)*Factorial(n) ); # G. C. Greubel, Aug 23 2019
CROSSREFS
Sequence in context: A212472 A025750 A365622 * A335800 A239620 A253124
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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)