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!)
A155581 a(n)=If[IntegerQ[((6*n - 4)/( n + 1))*a(n - 1)], ((6*n - 4)/(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, 7, 28, 84, 384, 1824, 6080, 30400, 304000, 1064000, 12768000, 67488000, 359936000, 1934656000, 30954496000, 526226432000, 2880397312000, 15842185216000, 316843704320000, 1757042360320000, 38654931927040000 (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 higher).
LINKS
FORMULA
a(n)=If[IntegerQ[((6*n - 4)/( n + 1))*a(n - 1)], ((6*n - 4)/(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[((6*n - 4)/(n + 1))*a[n - 1]], ((3*n - 2)/(n + 1))* a[n - 1],
If[IntegerQ[((6*n - 4)/(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: A099815 A123363 A102961 * A349329 A048504 A092465
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 18 13:29 EDT 2024. Contains 371780 sequences. (Running on oeis4.)