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.

A046687 Numbers k such that k and sum of 4th powers of divisors of k are relatively prime.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 15, 16, 17, 18, 19, 21, 23, 25, 27, 29, 31, 32, 33, 35, 37, 39, 41, 43, 45, 47, 49, 50, 51, 53, 55, 57, 59, 61, 64, 65, 67, 69, 71, 72, 73, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 98, 99, 100, 101, 103, 105, 107, 109, 111, 113, 115, 119
Offset: 1

Views

Author

Keywords

Comments

All even terms are either squares or doubled squares. - Ivan Neretin, Dec 30 2015
The asymptotic density of this sequence is 0 (Dressler, 1974). - Amiram Eldar, Jul 23 2020

Crossrefs

Programs

  • Mathematica
    Select[Range[120], GCD[#, DivisorSigma[4, #]] == 1 &] (* Ivan Neretin, Dec 30 2015 *)
    Select[Range[150],CoprimeQ[#,DivisorSigma[4,#]]&] (* Harvey P. Dale, Jan 15 2024 *)
  • PARI
    isok(n) = gcd(n, sigma(n, 4))  == 1; \\ Michel Marcus, Dec 20 2013