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.

A272909 Numbers that are the product of two Lucas numbers L(i), for i >= 1, using the Lucas numbers as defined in A000204.

Original entry on oeis.org

1, 3, 4, 7, 9, 11, 12, 16, 18, 21, 28, 29, 33, 44, 47, 49, 54, 72, 76, 77, 87, 116, 121, 123, 126, 141, 188, 198, 199, 203, 228, 304, 319, 322, 324, 329, 369, 492, 517, 521, 522, 532, 597, 796, 836, 841, 843, 846, 861, 966, 1288, 1353, 1363, 1364, 1368, 1393
Offset: 1

Views

Author

Clark Kimberling, May 10 2016

Keywords

Comments

Conjecture: if c and d are consecutive terms, then d - c is a product of two Lucas numbers or a product of two Fibonacci numbers.

Crossrefs

Cf. A049997 (Fibonacci(i)*Fibonacci(j)), A000204.

Programs

  • Mathematica
    Take[Union@Flatten@Table[LucasL[i] LucasL[j], {i, 0, 15}, {j, i}], 60] (* adapted by Vincenzo Librandi, Sep 04 2016 *)