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!)
A243698 Number of meta-Sylvester classes of 4-multiparking functions of length n. 3
1, 1, 6, 65, 1014, 20598, 514604, 15240261, 521457190, 20226342858, 876527514436, 41952351066858, 2196985118015932, 124915413833339116, 7661168289958273560, 504025093269698008877, 35400246892564986253318, 2643280429851151580804610, 209058392585121976377752532 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
See Novelli-Thibon (2014) for precise definition.
LINKS
J.-C. Novelli, J.-Y. Thibon, Hopf Algebras of m-permutations, (m+1)-ary trees, and m-parking functions, arXiv preprint arXiv:1403.5962 [math.CO], 2014. See Fig. 28.
FORMULA
G.f.: 1/(1-x) = Sum_{n>=0} a(n) * x^n*(1-x)^n / Product_{k=1..n} (1 + 4*k*x). - Paul D. Hanna, Jun 14 2014
MATHEMATICA
a[n_] := a[n] = If[n<0, 0, Coefficient[1/(1 - x + x O[x]^n) - Sum[a[k] x^k (1-x)^k/Product[1 + 4j x + x O[x]^n, {j, 0, k}], {k, 1, n-1}], x, n]];
Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Jul 27 2018, after Paul D. Hanna *)
PROG
(PARI) {a(n)=if(n<0, 0, polcoeff(1/(1-x+x*O(x^n)) - sum(k=1, n-1, a(k)*x^k*(1-x)^k/prod(j=0, k, 1+4*j*x+x*O(x^n))), n))}
for(n=0, 20, print1(a(n), ", ")) \\ Paul D. Hanna, Jun 14 2014
CROSSREFS
Sequence in context: A099343 A189509 A360977 * A217899 A349524 A006959
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 14 2014
EXTENSIONS
Offset changed to 0 by Paul D. Hanna, Jun 14 2014
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 April 19 14:50 EDT 2024. Contains 371792 sequences. (Running on oeis4.)