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

A009468
Expansion of sin(log(1+x)^2).
2
0, 0, 2, -6, 22, -100, 428, -1008, -12504, 325152, -5509368, 85326120, -1301444520, 20069047440, -316157970000, 5106165734880, -84530527771200, 1430269752307200, -24598613333889120, 426082994004863520, -7316749927773684000
OFFSET
0,3
FORMULA
a(n) = sum(k=0..(n-1)/2, ((-1)^k*(4*k+2)!*stirling1(n,4*k+2))/(2*k+1)!). - Vladimir Kruchinin, Jun 28 2011
EXAMPLE
sin(log(x+1)^2) = 2/2!*x^2-6/3!*x^3+22/4!*x^4-100/5!*x^5...
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Sin[Log[1+x]^2], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jul 05 2023 *)
PROG
(Maxima)
a(n):=sum(((-1)^k*(4*k+2)!*stirling1(n, 4*k+2))/(2*k+1)!, k, 0, ((n-1)/2)); /* Vladimir Kruchinin, Jun 28 2011 */
CROSSREFS
Sequence in context: A009789 A012271 A012266 * A088819 A177478 A376694
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
Previous Mathematica program replaced by Harvey P. Dale, Jul 05 2023
STATUS
approved