cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A094563 Triple products of Fibonacci numbers: F(i)*F(j)*F(k), 2 <= i <= j <= k.

This page as a plain text file.
%I A094563 #22 Jan 05 2025 19:51:37
%S A094563 1,2,3,4,5,6,8,9,10,12,13,15,16,18,20,21,24,25,26,27,30,32,34,39,40,
%T A094563 42,45,48,50,52,55,63,64,65,68,72,75,78,80,84,89,102,104,105,110,117,
%U A094563 120,125,126,128,130,136,144,165,168,169,170,178,189,192
%N A094563 Triple products of Fibonacci numbers: F(i)*F(j)*F(k), 2 <= i <= j <= k.
%C A094563 This sequence contains A049997 as a subsequence (aside from its first term), so a(n) << sqrt(phi)^n. All Fibonacci factors must be at most the number, so a(n) >> (phi^(1/3))^n. - _Charles R Greathouse IV_, Feb 06 2013
%H A094563 Charles R Greathouse IV, <a href="/A094563/b094563.txt">Table of n, a(n) for n = 1..10000</a>
%H A094563 C. Kimberling, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Papers1/42-1/quartkimberling01_2004.pdf">Orderings of products of Fibonacci numbers</a>, Fibonacci Quart. 42:1 (2004), pp. 28-35.
%e A094563 F(2)*F(2)*F(2) = 1 < F(2)*F(2)*F(3) = 2 < ...
%e A094563 < F(4)*F(4)*F(4) = 27 < F(3)*F(4)*F(5) = 30 < F(3)*F(3)*F(6) = 32 < ...
%t A094563 Select[Union[Times@@@Tuples[Fibonacci[Range[12]],3]],#<200&] (* _Harvey P. Dale_, Dec 13 2011 *)
%o A094563 (PARI) list(lim)=my(phi=(1+sqrt(5))/2, v=vector(log(lim*sqrt(5))\log(phi),i,fibonacci(i+1)), u=List(), t, t1); for(i=1,#v, for(j=i,#v, t1=v[i]*v[j];if(t1>lim,break); for(k=j, #v, t=t1*v[k]; if(t>lim,break,listput(u,t))))); vecsort(Vec(u),,8) \\ _Charles R Greathouse IV_, Feb 06 2013
%Y A094563 Subsequence of A065108.
%Y A094563 Cf. A000045, A094564.
%K A094563 nonn
%O A094563 1,2
%A A094563 _Clark Kimberling_, May 12 2004