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.

A200995 Numbers not expressible as a product of Lucas numbers.

Original entry on oeis.org

5, 10, 13, 15, 17, 19, 20, 23, 25, 26, 30, 31, 34, 35, 37, 38, 39, 40, 41, 43, 45, 46, 50, 51, 52, 53, 55, 57, 59, 60, 61, 62, 65, 67, 68, 69, 70, 71, 73, 74, 75, 78, 79, 80, 82, 83, 85, 86, 89, 90, 91, 92, 93, 95, 97, 100, 101, 102, 103, 104, 105, 106, 107, 109
Offset: 1

Views

Author

Arkadiusz Wesolowski, Jan 07 2013

Keywords

Comments

a(n+1) - a(n) <= 5 for all n.

Examples

			65 = 5*13 is not the product of Lucas numbers, so 65 is in the sequence.
		

Crossrefs

Cf. A000032. Complement of A200381.

Programs

  • Mathematica
    listMultiply[lst_] := Take[Union@Flatten@Table[lst[[i]]*lst[[j]], {i, Length[lst]}, {j, i}], 46]; A200381 = Nest[listMultiply, LucasL@Range[0, 9], 3]; Complement[Range@Last[A200381], A200381]