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!)
A035276 One seventh of deca-factorial numbers. 9
1, 17, 459, 16983, 798201, 45497457, 3048329619, 234721380663, 20420760117681, 1980813731415057, 211947069261411099, 24797807103585098583, 3149321502155307520041, 431457045795277130245617, 63424185731905738146105699, 9957597159909200888938594743 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
7*a(n) = (10*n-3)(!^10) = Product_{j=1..n} (10*j-3).
E.g.f.: (-1 + (1-10*x)^(-7/10))/7.
a(n) = (Pochhammer(7/10,n)*10^n)/7.
Sum_{n>=1} 1/a(n) = 7*(e/10^3)^(1/10)*(Gamma(7/10) - Gamma(7/10, 1/10)). - Amiram Eldar, Dec 22 2022
MAPLE
seq( mul(10*j-3, j=1..n)/7, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Table[10^n*Pochhammer[7/10, n]/7, {n, 20}] (* G. C. Greubel, Nov 11 2019 *)
PROG
(PARI) vector(20, n, prod(j=1, n, 10*j-3)/7 ) \\ G. C. Greubel, Nov 11 2019
(Magma) [(&*[10*j-3: j in [1..n]])/7: n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [product( (10*j-3) for j in (1..n))/7 for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> Product([1..n], j-> 10*j-3)/7 ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A271438 A122430 A009051 * A196484 A196717 A220598
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.)