The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A035272 One third of deca-factorial numbers. 9
1, 13, 299, 9867, 424281, 22486893, 1416674259, 103417220907, 8583629335281, 798277528181133, 82222585402656699, 9291152150500206987, 1142811714511525459401, 151993958030032886100333, 21735135998294702712347619, 3325475807739089514989185707, 542052556661471590943237270241 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
3*a(n) = (10*n-7)(!^10) = Product_{j=1..n} (10*j-7).
E.g.f.: (-1 + (1-10*x)^(-3/10))/3.
Sum_{n>=1} 1/a(n) = 3*(e/10^7)^(1/10)*(Gamma(3/10) - Gamma(3/10, 1/10)). - Amiram Eldar, Dec 22 2022
MAPLE
seq( mul(10*j-7, j=1..n)/3, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Table[10^n*Pochhammer[3/10, n]/3, {n, 20}] (* G. C. Greubel, Nov 11 2019 *)
PROG
(PARI) vector(20, n, prod(j=1, n, 10*j-7)/3 ) \\ G. C. Greubel, Nov 11 2019
(Magma) [(&*[10*j-7: j in [1..n]])/3: n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [product( (10*j-7) for j in (1..n))/3 for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> Product([1..n], j-> 10*j-7)/3 ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A165218 A317632 A076130 * A296319 A009119 A322734
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 June 8 07:10 EDT 2024. Contains 373207 sequences. (Running on oeis4.)