login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A050118
Numbers that are the product of two Lucas numbers.
2
1, 2, 3, 4, 6, 7, 8, 9, 11, 12, 14, 16, 18, 21, 22, 28, 29, 33, 36, 44, 47, 49, 54, 58, 72, 76, 77, 87, 94, 116, 121, 123, 126, 141, 152, 188, 198, 199, 203, 228, 246, 304, 319, 322, 324, 329, 369, 398, 492, 517, 521, 522, 532, 597
OFFSET
1,2
LINKS
MAPLE
lucas:= t -> combinat:-fibonacci(t+1) + combinat:-fibonacci(t-1):
sort(convert(select(`<`, {seq(seq(lucas(i)*lucas(j), i=j..30), j=0..30)}, lucas(31)), list)); # Robert Israel, May 11 2016
MATHEMATICA
Take[Union[Flatten[Table[LucasL[i]*LucasL[j], {i, 0, 200}, {j, 1, 200}]]], 100] (* Clark Kimberling, May 11 2016 *)
CROSSREFS
Cf. A000032.
Sequence in context: A356930 A124391 A200381 * A373159 A081754 A336654
KEYWORD
nonn
STATUS
approved