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-4 of 4 results.

A139571 Numbers with 31 divisors.

Original entry on oeis.org

1073741824, 205891132094649, 931322574615478515625, 22539340290692258087863249, 17449402268886407318558803753801, 2619995643649944960380551432833049
Offset: 1

Views

Author

Omar E. Pol, May 07 2008

Keywords

Comments

30th powers of primes. The n-th number with p divisors is equal to the n-th prime raised to power p-1, where p is prime.
Start of 31st row of A073915. - R. J. Mathar, Jun 27 2009, Jun 28 2009

Crossrefs

Cf. A073915, A122971, A137493 (30 divs), A175742 (32 divs).

Programs

Formula

a(n) = A000040(n)^(31-1) = A000040(n)^30.
a(n) = A122971(A000040(n)). - R. J. Mathar, Jun 27 2009

A175745 Numbers with 35 divisors.

Original entry on oeis.org

5184, 11664, 40000, 153664, 250000, 455625, 937024, 1265625, 1750329, 1827904, 1882384, 5345344, 8340544, 9529569, 10673289, 17909824, 20820969, 28344976, 37515625, 45265984, 59105344, 60886809, 73530625, 77228944, 95004009, 119946304, 143496441, 180848704
Offset: 1

Views

Author

Jaroslav Krizek, Aug 27 2010

Keywords

Comments

Numbers of the form p^34 and p^6*q^4 (A190464), where p and q are distinct primes.

Crossrefs

Programs

  • Mathematica
    Select[Range[9000000],DivisorSigma[0,#]==35&] (* Vladimir Joseph Stephan Orlovsky, May 06 2011 *)
  • PARI
    is(n)=numdiv(n)==35 \\ Charles R Greathouse IV, Jun 19 2016
    
  • Python
    from sympy import primepi, integer_nthroot, primerange
    def A175745(n):
        def bisection(f,kmin=0,kmax=1):
            while f(kmax) > kmax: kmax <<= 1
            kmin = kmax >> 1
            while kmax-kmin > 1:
                kmid = kmax+kmin>>1
                if f(kmid) <= kmid:
                    kmax = kmid
                else:
                    kmin = kmid
            return kmax
        def f(x): return n+x-sum(primepi(integer_nthroot(x//p**6,4)[0]) for p in primerange(integer_nthroot(x,6)[0]+1))+primepi(integer_nthroot(x,10)[0])-primepi(integer_nthroot(x,34)[0])
        return bisection(f,n,n) # Chai Wah Wu, Feb 22 2025

Formula

A000005(a(n)) = 35.
Sum_{n>=1} 1/a(n) = P(4)*P(6) - P(10) + P(34) = 0.000320676..., where P is the prime zeta function. - Amiram Eldar, Jul 03 2022

Extensions

Extended by T. D. Noe, May 08 2011

A175744 Numbers with 34 divisors.

Original entry on oeis.org

196608, 327680, 458752, 720896, 851968, 1114112, 1245184, 1507328, 1900544, 2031616, 2424832, 2686976, 2818048, 3080192, 3473408, 3866624, 3997696, 4390912, 4653056, 4784128, 5177344, 5439488, 5832704, 6356992, 6619136, 6750208, 7012352, 7143424, 7405568
Offset: 1

Views

Author

Jaroslav Krizek, Aug 27 2010

Keywords

Comments

Numbers of the form p^33 and p^16*q^1, where p and q are distinct primes.

Crossrefs

Programs

  • Mathematica
    Select[Range[6000000],DivisorSigma[0,#]==34&] (* Vladimir Joseph Stephan Orlovsky, May 06 2011 *)
  • PARI
    is(n)=numdiv(n)==34 \\ Charles R Greathouse IV, Jun 19 2016
    
  • Python
    from sympy import primepi, primerange, integer_nthroot
    def A175744(n):
        def bisection(f,kmin=0,kmax=1):
            while f(kmax) > kmax: kmax <<= 1
            kmin = kmax >> 1
            while kmax-kmin > 1:
                kmid = kmax+kmin>>1
                if f(kmid) <= kmid:
                    kmax = kmid
                else:
                    kmin = kmid
            return kmax
        def f(x): return int(n+x-sum(primepi(x//p**16) for p in primerange(integer_nthroot(x,16)[0]+1))+primepi(integer_nthroot(x,17)[0])-primepi(integer_nthroot(x,33)[0]))
        return bisection(f,n,n) # Chai Wah Wu, Feb 22 2025

Formula

A000005(a(n))=34.

A274807 Numbers n such that n and n+1 both have 32 divisors.

Original entry on oeis.org

21735, 58695, 93015, 94094, 111111, 123255, 137240, 140504, 159159, 162944, 175959, 178815, 190280, 202215, 214136, 215270, 224895, 226610, 233624, 239624, 239784, 242535, 246375, 248744, 250263, 251559, 258687, 259064, 259335, 260337
Offset: 1

Views

Author

Keywords

Crossrefs

Intersection of A005237 and A175742.

Programs

  • PARI
    is(n)=numdiv(n)==32 && numdiv(n+1)==32
Showing 1-4 of 4 results.