A333472 a(n) = [x^n] ( c (x/(1 + x)) )^n, where c(x) = (1 - sqrt(1 - 4*x))/(2*x) is the o.g.f. of the Catalan numbers A000108.
1, 1, 3, 13, 59, 276, 1317, 6371, 31131, 153292, 759428, 3780888, 18900389, 94805959, 476945913, 2405454213, 12158471195, 61574325840, 312365992620, 1587052145492, 8074474510884, 41131551386120, 209760563456920, 1070822078321520, 5471643738383781, 27982867986637151
Offset: 0
Examples
Examples of congruences: a(11) - a(1) = 3780888 - 1 = (11^2)*31247 == 0 ( mod 11^2 ). a(3*7) - a(3) = 41131551386120 - 13 = (7^2)*13*23671*2727841 == 0 ( mod 7^2 ). a(5^2) - a(5) = 27982867986637151 - 276 = (5^4)*13*74687*46113049 == 0 ( mod 5^4 ).
Programs
-
Maple
Cat := x -> (1/2)*(1-sqrt(1-4*x))/x: G := x -> Cat(x/(1+x)): H := (x,n) -> series(G(x)^n, x, 51): seq(coeff(H(x, n), x, n), n = 0..25);
-
Mathematica
Table[SeriesCoefficient[((1 + x - Sqrt[1 - 2*x - 3*x^2]) / (2*x))^n, {x, 0, n}], {n, 0, 25}] (* Vaclav Kotesovec, Mar 29 2020 *)
Formula
a(n) = [x^n] ( (1 + x - sqrt(1 - 2*x - 3*x^2)) / (2*x) )^n.
a(n) ~ sqrt(((9386 + 1026*sqrt(57))^(1/3) + (9386 - 1026*sqrt(57))^(1/3) - 19)/228) * (((1261 + 57*sqrt(57))^(1/3) + (1261 - 57*sqrt(57))^(1/3) + 10)/6)^n / sqrt(Pi*n). - Vaclav Kotesovec, Mar 29 2020
Comments