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!)
A155580 a(n)=If[IntegerQ[((3*n - 2)/( n + 1))*a(n - 1)], ((3*n - 2)/(n + 1))* a(n - 1), If[IntegerQ[((4*n - 2)/(n + 1))*a( n - 1)], ((4*n - 2)/(n + 1))*a(n - 1), n*a(n - 1)]] 0
1, 1, 2, 5, 10, 30, 180, 585, 1430, 3575, 9100, 31850, 83300, 220150, 792540, 11888100, 32167800, 87567900, 1576222200, 4334611050, 11971782900, 33194488950, 92367273600, 257858638800, 722004188640, 18050104716000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Catalan recursion is:
a[0] = 1; a[n_] := a[n] = ((4*n - 2)/(n + 1))*a[n - 1];
The object here is to get a sequence that is Catalan like, but lower ( bifurcates lower).
LINKS
FORMULA
a(n)=If[IntegerQ[((3*n - 2)/( n + 1))*a(n - 1)], ((3*n - 2)/(n + 1))* a(n - 1),
If[IntegerQ[((4*n - 2)/(n + 1))*a( n - 1)], ((4*n - 2)/(n + 1))*a(n - 1), n*a(n - 1)]]
MATHEMATICA
Clear [a, n]; a[0] = 1;
a[n_] := a[n] = If[IntegerQ[((3*n - 2)/(n + 1))*a[n - 1]], ((3*n - 2)/(n + 1))* a[n - 1],
If[IntegerQ[((4*n - 2)/(n + 1))*a[n - 1]], ((4*n - 2)/(n + 1))*a[n - 1], n*a[n - 1]]];
Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A047113 A239630 A239629 * A226963 A018386 A270521
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Jan 24 2009
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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)