A271354 Products of two distinct Fibonacci numbers, both greater than 1.
6, 10, 15, 16, 24, 26, 39, 40, 42, 63, 65, 68, 102, 104, 105, 110, 165, 168, 170, 178, 267, 272, 273, 275, 288, 432, 440, 442, 445, 466, 699, 712, 714, 715, 720, 754, 1131, 1152, 1155, 1157, 1165, 1220, 1830, 1864, 1869, 1870, 1872, 1885, 1974, 2961, 3016
Offset: 1
Examples
2*3 = 6, 2*5 = 10, 3*5 = 15, 2*8 = 16.
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
- Clark Kimberling, Orderings of products of Fibonacci numbers, Fibonacci Quarterly 42:1 (2004), pp. 28-35.
Programs
-
Mathematica
z = 200; f[n_] := Fibonacci[n]; Take[Sort[Flatten[Table[f[m] f[n], {n, 3, z}, {m, 3, n - 1}]]], 100] Times@@@Subsets[Fibonacci[Range[3,20]],{2}]//Union (* Harvey P. Dale, Jul 12 2025 *)
-
PARI
list(lim)=my(v=List,F=vector(A130233(lim\2),k,fibonacci(k)),t); for(i=2,#F, for(j=1,i-1, t=F[i]*F[j]; if(t>lim,break); listput(v,t))); Set(v) \\ Charles R Greathouse IV, Oct 07 2016
Comments