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

A032268
"DIJ" (bracelet, indistinct, labeled) transform of 3,3,3,3,...
1
1, 3, 12, 57, 471, 6159, 105987, 2207847, 53715891, 1493742279, 46730999667, 1624397276487, 62111517207411, 2590839950614599, 117076879593900147, 5697526788322329927, 297074131510779228531, 16522357697381918530119, 976355872514689231565427
OFFSET
0,2
LINKS
C. G. Bower, Transforms (2)
FORMULA
E.g.f.: 1 + (g(x) + g(x)^2/2 - log(1-g(x)))/2 where g(x) = 3*(exp(x) - 1). - Andrew Howroyd, Sep 12 2018
MATHEMATICA
m = 19; (1 + (g[x] + g[x]^2/2 - Log[1 - g[x]])/2 /. g[x] -> 3*(Exp[x] - 1) + O[x]^m // CoefficientList[#, x]&)*Range[0, m-1]! (* Jean-François Alcover, Sep 11 2019 *)
PROG
(PARI) seq(n)={my(p=3*(exp(x + O(x*x^n))-1)); Vec(1 + serlaplace(p + p^2/2 - log(1-p))/2)} \\ Andrew Howroyd, Sep 12 2018
CROSSREFS
KEYWORD
nonn
EXTENSIONS
a(0)=1 prepended and terms a(17) and beyond from Andrew Howroyd, Sep 12 2018
STATUS
approved