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!)
A273398 a(n) = Catalan(Fibonacci(n)). 2

%I #15 Jan 20 2017 18:27:58

%S 1,1,1,2,5,42,1430,742900,24466267020,812944042149730764,

%T 1759414616608818870992479875972,

%U 254224158304000796523953440778841647086547372026600,161115593562260183597018076262500259385225118963936327496691227156776984827584194180

%N a(n) = Catalan(Fibonacci(n)).

%C Next term, a(13), which has 137 digits, is too large to include. Counterpart to A273397.

%C The number of digits of a(n) grows fast exceeding 10^6 for n=32. It grows faster than Fibonacci(n-2) but slower than Fibonacci(n) or Fibonacci(n-1) and even slower than the same number for A273397 which grows faster than Fibonacci(n).

%H Alois P. Heinz, <a href="/A273398/b273398.txt">Table of n, a(n) for n = 0..17</a>

%F a(n) = A000108(A000045(n)).

%e For n=4, a(4)=Catalan(Fibonacci(4))=Catalan(3)=5.

%p a:= n-> (f-> binomial(2*f, f)/(f+1))((<<0|1>, <1|1>>^n)[1, 2]):

%p seq(a(n), n=0..12); # _Alois P. Heinz_, Jan 20 2017

%t CatalanNumber[Fibonacci[Range[0,12]]]

%t Table[CatalanNumber[Fibonacci[n]], {n, 0,12}]

%o (PARI) for(n=0,12, fn=fibonacci(n); print1(binomial(2*fn, fn)/(fn+1) ","))

%Y Cf. A000108(Catalan), A000045 (Fibonacci), A263986, A273397 (related sequences with Fibonacci and Catalan numbers).

%K nonn,easy

%O 0,4

%A _Waldemar Puszkarz_, May 21 2016

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 2 11:52 EDT 2024. Contains 372196 sequences. (Running on oeis4.)