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

A032272
Shifts left under "DIJ" (bracelet, indistinct, labeled) transform, with a(1)=2.
2
2, 2, 6, 26, 182, 1786, 22870, 359226, 6658038, 141860538, 3411462102, 91331548410, 2692998369270, 86698082609658, 3025579919280726, 113759391284411322, 4584343174947333366, 197110924461251852346, 9006669123611196569046, 435827319931153165710714
OFFSET
1,1
LINKS
C. G. Bower, Transforms (2)
MATHEMATICA
m = 20; A[_] = 0;
Do[A[x_] = Integrate[2 + (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(2+DIJ(p))); Vec(serlaplace(p))} \\ Andrew Howroyd, Sep 19 2018
CROSSREFS
Sequence in context: A374400 A292831 A076726 * A214446 A179320 A004304
KEYWORD
nonn
EXTENSIONS
Terms a(19) and beyond from Andrew Howroyd, Sep 19 2018
STATUS
approved