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

A106206
Coefficients of (1 + 144*x)^(1/24).
0
1, 6, -414, 38916, -4144554, 472479156, -56225019564, 6891580969416, -863170516419354, 109910379090731076, -14178438902704308804, 1848352853316179893176, -243058400211077655952644
OFFSET
0,2
FORMULA
G.f.: (1 + 144*x)^(1/24).
D-finite with recurrence: n*a(n) +6*(24*n-25)*a(n-1)=0. - R. J. Mathar, Jan 20 2020
EXAMPLE
G.f. = 1 + 6*x - 414*x^2 + 38916*x^3 - 4144554*x^4 + 472479156*x^5 + ...
MATHEMATICA
CoefficientList[Series[(1+144x)^(1/24), {x, 0, 20}], x] (* Harvey P. Dale, Dec 17 2013 *)
PROG
(PARI) {a(n) = if( n<0, 0, polcoeff( (1 + 144*x + x * O(x^n))^(1/24), n))};
CROSSREFS
Sequence in context: A172227 A331352 A159015 * A174773 A229471 A258192
KEYWORD
sign
AUTHOR
Michael Somos, Apr 25 2005
STATUS
approved