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!)
A071897 CONTINUANT transform of Catalan numbers 1, 2, 5, 14, 42, ... 2
1, 3, 16, 227, 9550, 1260827, 540904333, 773494457017, 3760730590920987, 63165231778603354669, 3713231319097707398492821, 772396673211317543153892036521, 573813488532401034128124101329943721, 1534629746271367018386831539104008577227761 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
N. J. A. Sloane, Transforms
MAPLE
a:= proc(n) option remember; `if`(n<0, 0,
`if`(n=0, 1, binomial(2*n, n)/(n+1) *a(n-1) +a(n-2)))
end:
seq(a(n), n=1..20); # Alois P. Heinz, Aug 06 2013
MATHEMATICA
a[n_] := a[n] = If[n<0, 0, If[n==0, 1, CatalanNumber[n]*a[n-1] + a[n-2]]]; Table[a[n], {n, 1, 20}] (* Jean-François Alcover, Feb 25 2017, translated from Maple *)
CROSSREFS
Sequence in context: A113597 A361366 A000273 * A182012 A272385 A013923
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 10 2002
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)