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

A366441 The number of divisors of the 5-rough numbers (A007310).

Original entry on oeis.org

1, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 4, 2, 2, 2, 2, 3, 2, 4, 2, 2, 4, 2, 2, 2, 4, 2, 2, 4, 2, 4, 4, 2, 2, 2, 2, 2, 2, 4, 4, 3, 4, 2, 2, 4, 2, 2, 4, 4, 2, 2, 4, 2, 4, 2, 2, 3, 2, 6, 2, 2, 4, 4, 2, 2, 2, 2, 4, 4, 4, 2, 4, 4, 4, 2, 2, 2, 2, 4, 2, 2, 6, 4, 2, 4, 2, 4
Offset: 1

Views

Author

Amiram Eldar, Oct 10 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSigma[0, 2*Floor[3*n/2] - 1]; Array[a, 100]
  • PARI
    a(n) = numdiv((3*n)\2 << 1 - 1)
    
  • Python
    from sympy import divisor_count
    def A366441(n): return divisor_count((n+(n>>1)<<1)-1) # Chai Wah Wu, Oct 10 2023

Formula

a(n) = A000005(A007310(n)).
Sum_{k=1..n} a(k) ~ (log(n) + 2*gamma - 1 + 2*log(6)) * n / 3, where gamma is Euler's constant (A001620).
Showing 1-1 of 1 results.