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!)
A212072 G.f. satisfies: A(x) = (1 + x*A(x)^2)^3. 7
1, 3, 21, 190, 1950, 21576, 250971, 3025308, 37456650, 473498025, 6085977381, 79296104784, 1044955576496, 13903071489300, 186507160795350, 2519857658331576, 34258270557555282, 468322722628414290, 6433538749783033350, 88767899653496377050, 1229626632793564911906 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Alexander Burstein and Louis W. Shapiro, Pseudo-involutions in the Riordan group, arXiv:2112.11595 [math.CO], 2021.
Clemens Heuberger, Sarah J. Selkirk, and Stephan Wagner, Enumeration of Generalized Dyck Paths Based on the Height of Down-Steps Modulo k, arXiv:2204.14023 [math.CO], 2022.
FORMULA
a(n) = 3*binomial(6*n+3,n)/(6*n+3).
G.f. A(x) = G(x)^3 where G(x) = 1 + x*G(x)^6 is the g.f. of A002295.
EXAMPLE
G.f.: A(x) = 1 + 3*x + 21*x^2 + 190*x^3 + 1950*x^4 + 21576*x^5 + ...
Related expansions:
A(x)^2 = 1 + 6*x + 51*x^2 + 506*x^3 + 5481*x^4 + ... + A002295(n+1)*x^n + ...
A(x)^(1/3) = 1 + x + 6*x^2 + 51*x^3 + 506*x^4 + ... + A002295(n)*x^n + ...
MATHEMATICA
Table[(3 Binomial[#, n])/# &[6 n + 3], {n, 0, 20}] (* Michael De Vlieger, May 13 2022 *)
PROG
(PARI) {a(n)=binomial(6*n+3, n) * 3/(6*n+3)}
for(n=0, 40, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+3*x); for(i=1, n, A=(1+x*A^2)^3+x*O(x^n)); polcoeff(A, n)}
CROSSREFS
Sequence in context: A059863 A256625 A057616 * A212029 A219535 A292361
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 29 2012
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 March 19 01:57 EDT 2024. Contains 370952 sequences. (Running on oeis4.)