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.

A094564 Triple products of distinct Fibonacci numbers: F(i)F(j)F(k), 2<=i

Original entry on oeis.org

6, 10, 15, 16, 24, 26, 30, 39, 40, 42, 48, 63, 65, 68, 78, 80, 102, 104, 105, 110, 120, 126, 130, 165, 168, 170, 178, 195, 204, 208, 210, 267, 272, 273, 275, 288, 312, 315, 330, 336, 340, 432, 440, 442, 445, 466, 504, 510, 520, 534, 544, 546, 550, 699, 712, 714
Offset: 1

Views

Author

Clark Kimberling, May 12 2004

Keywords

Examples

			F(2)F(3)F(4)=6 < F(2)F(3)F(5)=10 < F(3)F(4)F(5)=30 < ...
		

Crossrefs

Programs

  • Mathematica
    With[{nn=30},Take[Union[Times@@@Subsets[Fibonacci[Range[2,nn]],{3}]], 2*nn]] (* Harvey P. Dale, Dec 23 2015 *)