login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A274430
Positions in A274429 of products of distinct Fibonacci numbers > 1.
3
3, 5, 8, 9, 12, 13, 17, 18, 19, 23, 24, 25, 30, 31, 32, 33, 38, 39, 40, 41, 47, 48, 49, 50, 51, 57, 58, 59, 60, 61, 68, 69, 70, 71, 72, 73, 80, 81, 82, 83, 84, 85, 93, 94, 95, 96, 97, 98, 99, 107, 108, 109, 110, 111, 112, 113, 122, 123, 124, 125, 126, 127
OFFSET
1,1
COMMENTS
Complement of A274431.
MATHEMATICA
z = 200; f[n_] := Fibonacci[n];
u = Take[Sort[Flatten[Table[f[m] f[n], {n, 3, z}, {m, 3, n - 1}]]], 100]
g[n_] := LucasL[n];
v = Take[Sort[Flatten[Table[g[u] g[v], {u, 1, z}, {v, 1, u - 1}]]], z]
Intersection[u, v]
w = Union[u, v] (* A274429 *)
Select[Range[300], MemberQ[u, w[[#]]] &] (* A274430 *)
Select[Range[300], MemberQ[v, w[[#]]] &] (* A274431 *)
CROSSREFS
Sequence in context: A189213 A325168 A211703 * A107792 A051206 A081451
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 22 2016
STATUS
approved