The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A130408 Numerators of a-sequence for Sheffer matrix A130191 (Stirling2 squared). 2
1, 1, -1, 3, -44, 49, -9895, 3124, -54429, 2624879, -59124785, 163841201, -2508904105349, 1776678914237, -2029995134495, 175211074573961, -21557683580436716, 94127808754677868, -87882971047931164843, 161354083950193175137, -104683178840085862057001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
The denominators are found in A130409.
From the definition of the a-sequence {r(n)} one has the recurrence for (Stirling2)^2 = S2sq: S2sq(n,m) = (n/m)*Sum_{j=0..n-m} binomial(m-1+j,j)*r(j)*S2sq(n-1,m-1+j), n >= m >= 1.
For the notion of the a-sequence for a Sheffer matrix see the W. Lang link under A006232. Here the a-sequence is called r(n) because it is a sequence of rationals.
LINKS
Wolfdieter Lang, Rationals and more.
FORMULA
a(n) = numerator(r(n)), n >= 0, with the rational r(n) sequence with e.g.f. x/log(1+log(1+x)). {r(n)} is the a-sequence for the Sheffer matrix (Stirling2)^2 (A130191).
EXAMPLE
Rationals r(n): [1, 1, -1/3, 3/4, -44/15, 49/3, -9895/84, 3124/3, -54429/5, ...].
Recurrence for (Stirling2)^2: 32=S2sq(4,2) = (4/2)*(1*1*5 + 2*1*6 + 3*(-1/3)*1).
MAPLE
seq( numer( coeff(series( x/log(1+log(1+x)), x, n+2)*factorial(n), x, n) ), n = 0..20); # G. C. Greubel, Jan 26 2020
MATHEMATICA
With[{m = 20}, CoefficientList[Series[x/Log[1+Log[1+x]], {x, 0, m}], x]*Range[0, m]!]//Numerator (* G. C. Greubel, Jan 26 2020 *)
PROG
(Magma) m:=22; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( x/Log(1+Log(1+x)) )); [Numerator(Factorial(n-1)*b[n]): n in [1..m-1]]; // G. C. Greubel, Jan 26 2020
(Sage) [numerator( factorial(n)*( x/log(1+log(1+x)) ).series(x, n+1).list()[n]) for n in (0..20)] # G. C. Greubel, Jan 26 2020
CROSSREFS
Cf. A006232(n)/A006233(n) (a-sequence for Stirling2 A048993).
Sequence in context: A346200 A326970 A076361 * A349646 A296279 A133073
KEYWORD
sign,frac,easy
AUTHOR
Wolfdieter Lang, Jun 01 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 29 18:36 EDT 2024. Contains 372952 sequences. (Running on oeis4.)