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!)
A034789 Related to sextic factorial numbers A008542. 2
1, 21, 546, 15561, 466830, 14471730, 458960580, 14801478705, 483514971030, 15955994043990, 530899438190940, 17785131179396490, 599222112044281740, 20287948650642110340, 689790254121831751560, 23539092421907508521985 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Convolution of A004993(n-1) with A025751(n), n >= 1.
LINKS
Elżbieta Liszewska, Wojciech Młotkowski, Some relatives of the Catalan sequence, arXiv:1907.10725 [math.CO], 2019.
FORMULA
a(n) = 6^(n-1)*A008542(n)/n!.
G.f.: (-1+(1-36*x)^(-1/6))/6.
D-finite with recurrence: n*a(n) +6*(-6*n+5)*a(n-1)=0. - R. J. Mathar, Jan 28 2020
MAPLE
seq( 6^(n-1)*mul(6*j-5, j=1..n)/n!, n=1..20); # G. C. Greubel, Nov 11 2019
MATHEMATICA
Rest@ CoefficientList[Series[(-1 + (1 - 36 x)^(-1/6))/6, {x, 0, 16}], x] (* Michael De Vlieger, Oct 13 2019 *)
Table[6^(2*n-1)*Pochhammer[1/6, n]/n!, {n, 20}] (* G. C. Greubel, Nov 11 2019 *)
PROG
(PARI) vector(20, n, 6^(n-1)*prod(j=1, n, 6*j-5)/n! ) \\ G. C. Greubel, Nov 11 2019
(Magma) [6^(n-1)*(&*[6*j-5: j in [1..n]])/Factorial(n): n in [1..20]]; // G. C. Greubel, Nov 11 2019
(Sage) [6^(n-1)*product( (6*j-5) for j in (1..n))/factorial(n) for n in (1..20)] # G. C. Greubel, Nov 11 2019
(GAP) List([1..20], n-> 6^(n-1)*Product([1..n], j-> 6*j-5)/Factorial(n) ); # G. C. Greubel, Nov 11 2019
CROSSREFS
Sequence in context: A221766 A080483 A015255 * A297635 A292062 A194022
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)