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.

A354181 Numbers whose number of divisors is not a 3-smooth number.

Original entry on oeis.org

16, 48, 64, 80, 81, 112, 144, 162, 176, 192, 208, 240, 272, 304, 320, 324, 336, 368, 400, 405, 432, 448, 464, 496, 512, 528, 560, 567, 576, 592, 624, 625, 648, 656, 688, 704, 720, 729, 752, 784, 810, 816, 832, 848, 880, 891, 912, 944, 960, 976, 1008, 1024, 1040
Offset: 1

Views

Author

Amiram Eldar, May 18 2022

Keywords

Comments

Number whose prime factorization includes an exponent e such that e+1 is in A059485.
The asymptotic density of this sequence is 1 - Product_{p prime} ((1 - 1/p) * Sum_{k in A003586} 1/p^(k-1)) = 0.0512963858... (Hilberdink, 2022).

Examples

			16 is a term since A000005(16) = 5 is not a 3-smooth number.
		

Crossrefs

Programs

  • Mathematica
    smoothQ[n_] := n == 2^IntegerExponent[n, 2] * 3^IntegerExponent[n, 3]; Select[Range[1000], !smoothQ[DivisorSigma[0, #]] &]
  • PARI
    is(n) = n>>=valuation(n, 2); n/=3^valuation(n, 3); n>1; \\ A059485
    isok(m) = is(numdiv(m)); \\ Michel Marcus, May 19 2022