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”).

A222145
a(n) = n-th second-order hyperharmonic-exponential number, multiplied by n!.
0
0, 1, 7, 77, 1222, 26364, 739608, 26079780, 1125791280, 58257484128, 3552890064480, 251777905728480, 20488109614761600, 1895120214639868800, 197527783071095930880, 23023412842885582176000, 2980946191374310495795200, 426192103002275699198054400
OFFSET
0,3
FORMULA
a(n) = (Sum_{k=0..n} A008277(n,k) * H2(k)) * A000142(n) where H2(k) is defined by g.f.: - log(1-x)/(1-x)^2. - Michel Marcus, Feb 09 2013
PROG
(PARI)
hyp(n, alpha) = {x= y+O(y^(n+1)); gf = - log(1-x)/(1-x)^alpha; polcoeff(gf, n, y); }
a(n, alpha=2) = sum(k=0, n, n!*(sum(i=0, k, (-1)^i*binomial(k, i)*i^n)*(-1)^k/k!)*hyp(k, alpha));
\\ Michel Marcus, Feb 09 2013
CROSSREFS
Sequence in context: A034176 A001765 A246460 * A240404 A093980 A077706
KEYWORD
nonn
AUTHOR
Michel Marcus, following a suggestion of N. J. A. Sloane , Feb 09 2013
STATUS
approved