A277202 Ratio of the fibonomial Catalan numbers and Lucas numbers.
1, 1, 5, 52, 1547, 116501, 23266914, 12105638490, 16520674898562, 58983635652443448, 551479789789947609461, 13497628802000408584637131, 864924115332005227077169874150, 145099921975789867545171624212383670
Offset: 1
References
- H. W. Gould, Fibonomial Catalan numbers: arithmetic properties and a table of the first fifty numbers, Abstract 71T-A216, Notices Amer. Math. Soc, 1971, page 938.
Links
- H. W. Gould, A new primality criterion of Mann and Shanks and its relation to a theorem of Hermite with extension to Fibonomials, Fib. Quart., 10 (1972), 355-364, 372.
- Eric Weisstein's World of Mathematics, q-Binomial Coefficient, Lucas Number.
Programs
-
Mathematica
Table[Fibonorial[2 n]/(Fibonorial[n] Fibonorial[n + 1] LucasL[n]), {n, 1, 15}] (* since version 10.0, or *) Round@Table[GoldenRatio^(n^2) QBinomial[2 n, n, -1/GoldenRatio^2]/(Fibonacci[n + 1] LucasL[n]), {n, 1, 15}] (* Round is equivalent to FullSimplify here, but is much faster *)