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!)
A354157 Numerator of generalized Catalan number c_3(n) (see Comments). 0
1, 1, 5, 104, 836, 7315, 202895, 1949900, 19284511, 1754890501, 18058389349, 188502545504, 5973492827120, 63732573470888, 685813307216632, 22303841469480032, 243350841747362492, 2670252449037801100, 265034693078133749180, 2936064912067020698720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
c_3(n) = (1/3)*(1/(n+1/3))*(Product_{i=0..n-1}(n+i+1/3))/n!. The denominators are powers of 3.
If 1/3 is everywhere changed to 1 we get the usual Catalan numbers A000108.
REFERENCES
J. B. Cosgrave, A Mersenne-Wieferich Odyssey, Manuscript, May 2022. See Section 18.6.
LINKS
EXAMPLE
The first few c_3(n) are 1, 1/3, 5/9, 104/81, 836/243, 7315/729, 202895/6561, 1949900/19683, 19284511/59049, 1754890501/1594323, 18058389349/4782969, ...
MAPLE
c := proc(n) 1/3 * 1/(n+1/3) * mul(n + i + 1/3, i = 0..(n-1))/n!: end;
MATHEMATICA
c3[n_] := With[{k = 3}, Pochhammer[n+1+1/k, n-1]/(k*n!)];
Table[Numerator[c3[n]], {n, 1, 19}] (* Jean-François Alcover, Apr 14 2023 *)
PROG
(PARI) a(n) = numerator((1/3)*(1/(n+1/3))*prod(i=0, n-1, n+i+1/3)/n!) \\ Rémy Sigrist, May 30 2022
CROSSREFS
Sequence in context: A007619 A163212 A163154 * A165387 A361138 A156848
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, May 29 2022, based on Section 18.6 of Cosgrave (2022)
EXTENSIONS
More terms from Rémy Sigrist, May 30 2022
a(0)=1 prepended by Alois P. Heinz, Apr 14 2023
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 May 7 12:11 EDT 2024. Contains 372303 sequences. (Running on oeis4.)