login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A154308
a(n) = (n+1)^5*(5+n)!/120.
3
1, 192, 10206, 344064, 9450000, 235146240, 5590680480, 130799370240, 3064161260160, 72648576000000, 1755018872006400, 43385497111756800, 1100535435333734400, 28694585299245465600, 769785401024640000000, 21259022134381903872000, 604515265659140419584000, 17698965059877321572352000
OFFSET
0,2
COMMENTS
Row 5 of square array A152818.
LINKS
Clark Kimberling, Polynomials associated with reciprocation, JIS 12 (2009) 09.3.4 section 6.
FORMULA
a(n) = A000142(n+1)*A000583(n+1)*A000389(n+5). - R. J. Mathar, Jan 17 2009
E.g.f.: (1 + 181*x + 3046*x^2 + 11606*x^3 + 12281*x^4 + 3125*x^5)/(1-x)^11. - R. J. Mathar, Dec 21 2011
MATHEMATICA
Table[(n + 1)^5*(5 + n)!/120, {n, 0, 25}] (* G. C. Greubel, Sep 10 2016 *)
PROG
(Magma) [(n+1)^5*Factorial(5+n)/120: n in [0..20]]; // Vincenzo Librandi, Sep 11 2016
(PARI) for(n=0, 25, print1((n+1)^5*(5+n)!/120, ", ")) \\ G. C. Greubel, Nov 24 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jan 06 2009
EXTENSIONS
More terms from R. J. Mathar, Jan 17 2009
STATUS
approved