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.

Showing 1-1 of 1 results.

A351220 Numbers k such that sigma(L(k)) > 2*L(K), where L(k) is the k-th Lucas number.

Original entry on oeis.org

6, 18, 30, 42, 45, 54, 66, 75, 78, 90, 102, 105, 114, 126, 135, 138, 150, 162, 165, 174, 186, 195, 198, 210, 222, 225, 234, 246, 258, 270, 282, 294, 306, 315, 318, 330, 342, 354, 366, 375, 378, 390, 402, 405, 414, 426, 435, 438, 450, 462, 474, 486, 495, 498, 510
Offset: 1

Views

Author

Amiram Eldar, Feb 05 2022

Keywords

Comments

Indices of Lucas numbers that are abundant numbers (A005101).
The asymptotic density of this sequence is larger than 71/700 = 0.1014... (Wall, 1982).

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 250], DivisorSigma[-1, LucasL[#]] > 2 &]
  • Python
    from sympy import divisor_sigma, lucas
    print([k for k in range(150) if divisor_sigma(lucas(k)) > 2*lucas(k)])
    # Karl-Heinz Hofmann, Feb 07 2022
Showing 1-1 of 1 results.