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.

A267894 Numbers whose number of odd divisors is nonprime.

Original entry on oeis.org

1, 2, 4, 8, 15, 16, 21, 27, 30, 32, 33, 35, 39, 42, 45, 51, 54, 55, 57, 60, 63, 64, 65, 66, 69, 70, 75, 77, 78, 84, 85, 87, 90, 91, 93, 95, 99, 102, 105, 108, 110, 111, 114, 115, 117, 119, 120, 123, 125, 126, 128, 129, 130, 132, 133, 135, 138, 140, 141, 143, 145, 147, 150
Offset: 1

Views

Author

Omar E. Pol, Apr 04 2016

Keywords

Examples

			The divisors of 42 are 1, 2, 3, 6, 7, 14, 21, 42. The odd divisors of 42 are 1, 3, 7, 21. There are 4 odd divisors of 42 and 4 is a nonprime number, so 42 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[150], !PrimeQ[DivisorSigma[0, #/2^IntegerExponent[#, 2]]] &] (* Amiram Eldar, Dec 03 2020 *)
  • PARI
    isok(n) = ! isprime(sumdiv(n, d, (d%2))); \\ Michel Marcus, Apr 04 2016