A098619
G.f. A(x) satisfies: A(x*G098618(x)) = G098618(x), where G098618 is the g.f. for A098618(n) = A007482(n)*Catalan(n).
Original entry on oeis.org
1, 3, 13, 51, 213, 867, 3589, 14739, 60853, 250563, 1033605, 4259571, 17565909, 72412707, 298586661, 1231016019, 5075753589, 20927272323, 86286346693, 355763629491, 1466857936405, 6047981701347, 24936516122469, 102815688922899, 423920292507061, 1747866711689283, 7206641564551429
Offset: 0
-
Flatten[{1,3,13,51,Table[17^(n/2)*(1/2+1/2*(-1)^n + 3/34*Sqrt[17]*(1-(-1)^n) + Sum[(-1)^j*(4/17 + Sum[Binomial[2*k-1,k-1]*2^(k+3)/ ((k+1)*17^(k+1)), {k,1,Floor[(j-1)/2]}]),{j,3,n-1}]),{n,4,20}]}] (* Vaclav Kotesovec, Oct 29 2012 *)
-
a(n)=polcoeff((sqrt(1-8*x^2+x^2*O(x^n))+3*x)/(1-17*x^2),n);
-
x='x+O('x^66); Vec((sqrt(1-8*x^2) + 3*x)/(1-17*x^2)) \\ Joerg Arndt, May 12 2013
A098614
Product of Fibonacci and Catalan numbers: a(n) = A000045(n+1)*A000108(n).
Original entry on oeis.org
1, 1, 4, 15, 70, 336, 1716, 9009, 48620, 267410, 1494844, 8465184, 48466796, 280073300, 1631408400, 9568812015, 56466198990, 335002137360, 1997007404700, 11955535480350, 71850862117320, 433322055191220, 2621615826231480, 15906988165723200, 96775058652983100
Offset: 0
Sequence has the factored form: {1*1, 1*1, 2*2, 3*5, 5*14, 8*42, 13*132, 21*429, ...}.
- Paul D. Hanna, Table of n, a(n) for n = 0..1000
- Paul Barry, On the duals of the Fibonacci and Catalan-Fibonacci polynomials and Motzkin paths, arXiv:2101.10218 [math.CO], 2021.
- Paul Barry and Arnauld Mesinga Mwafise, Classical and Semi-Classical Orthogonal Polynomials Defined by Riordan Arrays, and Their Moment Sequences, Journal of Integer Sequences, Vol. 21 (2018), Article 18.1.5.
- Sergi Elizalde and Amya Luo, Pattern avoidance in nonnesting permutations, arXiv:2412.00336 [math.CO], 2024.
-
[Fibonacci(n+1)*Catalan(n): n in [0..40]]; // G. C. Greubel, Jul 31 2024
-
With[{nn=30},Times@@@Thread[{Fibonacci[Range[nn]],CatalanNumber[ Range[ 0,nn-1]]}]] (* Harvey P. Dale, Nov 14 2011 *)
-
{a(n)=local(X=x+O(x^(n+3)), A); A = sqrt( (1-2*x - sqrt(1-4*X-16*x^2)) / (10*x^2)); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
-
{a(n)=binomial(2*n,n)/(n+1)*round(((1+sqrt(5))^(n+1)-(1-sqrt(5))^(n+1))/(2^(n+1)*sqrt(5)))}
-
[fibonacci(n+1)*catalan_number(n) for n in range(41)] # G. C. Greubel, Jul 31 2024
A098616
Product of Pell and Catalan numbers: a(n) = A000129(n+1)*A000108(n).
Original entry on oeis.org
1, 2, 10, 60, 406, 2940, 22308, 175032, 1408550, 11561836, 96425836, 814773960, 6960289532, 60012947800, 521582661000, 4564643261040, 40190674554630, 355772529165900, 3164408450118300, 28266363849505320, 253466716153665300, 2280803103062033160, 20588945107316958840
Offset: 0
Sequence begins: [1*1, 2*1, 5*2, 12*5, 29*14, 70*42, 169*132, 408*429,...].
-
With[{nn=30},Times@@@Thread[{LinearRecurrence[{2,1},{1,2},nn], CatalanNumber[ Range[0,nn-1]]}]] (* Harvey P. Dale, Jan 04 2012 *)
a[n_] := Fibonacci[n + 1, 2] * CatalanNumber[n]; Array[a, 25, 0] (* Amiram Eldar, May 05 2023 *)
-
a(n) = binomial(2*n,n)/(n+1)*round(((1+sqrt(2))^(n+1)-(1-sqrt(2))^(n+1))/(2*sqrt(2)))
Showing 1-3 of 3 results.
Comments