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

A181410
G.f.: exp( Sum_{n>=1} A181411(n)*x^n/n ) where A181411(n) = Sum_{k=0..n} C(n,k)*sigma(n+k).
1
1, 4, 17, 65, 234, 804, 2664, 8571, 26908, 82721, 249758, 742178, 2174623, 6291982, 17998815, 50957814, 142913510, 397339309, 1095887091, 3000130003, 8156568197, 22032636494, 59155443318, 157925193036, 419353166885, 1107924552070
OFFSET
0,2
EXAMPLE
G.f.: A(x) = 1 + 4*x + 17*x^2 + 65*x^3 + 234*x^4 + 804*x^5 +...
The logarithm of the g.f. begins:
log(A(x)) = 4*x + 18*x^2/2 + 55*x^3/3 + 150*x^4/4 + 379*x^5/5 + 915*x^6/6 + 2146*x^7/7 +...+ A181411(n)*x^n/n +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sum(k=0, m, binomial(m, k)*sigma(m+k))*x^m/m)+x*O(x^n)), n)}
CROSSREFS
Cf. A181411.
Sequence in context: A209375 A005784 A095252 * A102207 A334827 A202555
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 19 2010
STATUS
approved