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

A224680
a(n) = A224678(n^2).
2
1, 5, 49, 1117, 57181, 7086833, 2109733585, 1508630963069, 2591308566579217, 10691434112980070315, 105957942450483004330197, 2522387398320711543274084153, 144235039901139444727535460625985, 19811186631607253937472121882634566325
OFFSET
1,2
COMMENTS
A224678 is the logarithmic derivative of A023361, where A023361(n) = number of compositions of n into positive triangular numbers.
FORMULA
Logarithmic derivative of A224681.
EXAMPLE
L.g.f.: L(x) = x + 5*x^2/2 + 49*x^3/3 + 1117*x^4/4 + 57181*x^5/5 + 7086833*x^6/6 +...
where
exp(L(x)) = 1 + x + 3*x^2 + 19*x^3 + 300*x^4 + 11768*x^5 + 1193594*x^6 +...+ A224681(n)*x^n +...
PROG
(PARI) {a(n)=n^2*polcoeff(-log(1-sum(r=1, 2*n+1, x^(r*(r+1)/2)+x*O(x^(n^2)))), n^2)}
for(n=1, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 14 2013
STATUS
approved