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!)
A188365 a(n) = n! * [x^n] exp((1 - 2*x)/(1 - 3*x + x^2) - 1). 0
1, 1, 5, 43, 505, 7421, 130501, 2668975, 62197073, 1626103225, 47116726021, 1498191224531, 51855200633545, 1940384578283893, 78042911672096645, 3357060094366363351, 153771739817047383841, 7471843888639307665265, 383835896530177022152453, 20783664252941721959512315 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Vladimir Kruchinin and D. V. Kruchinin, Composita and their properties, arXiv:1103.2582 [math.CO], 2011-2013.
FORMULA
E.g.f.: exp((1 - 2*x)/(1 - 3*x + x^2) - 1) = exp(G(x) - 1) where G(x) is the o.g.f. of A001519.
a(n) = n! * Sum_(k=1..n} A188137(n,k)/k!, n>0, a(0)=1.
MAPLE
gf := exp((1 - 2*x)/(1 - 3*x + x^2) - 1): ser := series(gf, x, 22):
seq(k!*coeff(ser, x, k), k=0..19); # Peter Luschny, Jul 30 2020
PROG
(PARI) f(n, m) = sum(k=m, n, binomial(n-1, k-1) * sum(i=ceil((k-m)/2), k-m, binomial(i, k-m-i)*binomial(m+i-1, m-1))); \\ A188137
a(n) = if (n, n!*sum(k=1, n, f(n, k)/k!), 1); \\ Michel Marcus, Jul 30 2020
(PARI) my(x='x+O('x^25)); Vec(serlaplace(exp((1-2*x)/(1-3*x+x^2)-1))) \\ Joerg Arndt, Jul 30 2020
CROSSREFS
Sequence in context: A092471 A093620 A231277 * A107720 A362188 A299425
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, Mar 28 2011
EXTENSIONS
More terms from Michel Marcus, Jul 30 2020
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 6 06:55 EDT 2024. Contains 372290 sequences. (Running on oeis4.)