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

A032271
Shifts left under "DIJ" (bracelet, indistinct, labeled) transform, with a(1) = 1.
2
1, 1, 2, 6, 26, 153, 1159, 10787, 118990, 1514889, 21829045, 350831856, 6217711541, 120414106210, 2529280077269, 57262796466087, 1389919284470906, 36003846648705324, 991298773140316816, 28907953199669176721, 890060047425265014457, 28852689090331738589427
OFFSET
1,3
LINKS
MATHEMATICA
m = 22; A[_] = 0;
Do[A[x_] = Integrate[1 + (1/2)(A[x] + A[x]^2/2 - Log[1 - A[x]]) + O[x]^m, x] // Normal, {m}];
CoefficientList[A[x], x] Range[0, m]! // Rest (* Jean-François Alcover, Sep 18 2019 *)
PROG
(PARI) DIJ(p)={(p + p^2/2 - log(1-p))/2}
seq(n)={my(p=O(x)); for(i=1, n, p=intformal(1+DIJ(p))); Vec(serlaplace(p))} \\ Andrew Howroyd, Sep 19 2018
CROSSREFS
Sequence in context: A372236 A003659 A159602 * A205502 A107104 A141761
KEYWORD
nonn,eigen
EXTENSIONS
Terms a(20) and beyond from Andrew Howroyd, Sep 19 2018
STATUS
approved