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.

A063015 Numbers k such that k + mu(k) is prime.

Original entry on oeis.org

1, 3, 6, 10, 22, 30, 42, 46, 58, 82, 102, 106, 110, 114, 138, 166, 174, 178, 182, 210, 226, 230, 258, 262, 282, 318, 330, 346, 354, 358, 374, 382, 402, 410, 434, 462, 466, 478, 502, 546, 562, 570, 586, 602, 618, 642, 654, 678, 690, 710, 718, 762, 822, 830
Offset: 1

Views

Author

Dean Hickerson, Jul 27 2001

Keywords

Crossrefs

Cf. A063452.

Programs

  • Magma
    [n: n in [1..900] |IsPrime(n + MoebiusMu(n))]; // Vincenzo Librandi, Jun 28 2018
  • Mathematica
    Select[ Range[ 1, 830 ], PrimeQ[ #+MoebiusMu[ # ] ]& ]
  • PARI
    { n=0; for (m=1, 10^9, if (isprime(m + moebius(m)), write("b063015.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 15 2009