login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A366441 The number of divisors of the 5-rough numbers (A007310). 2
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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).
MATHEMATICA
a[n_] := DivisorSigma[0, 2*Floor[3*n/2] - 1]; Array[a, 100]
PROG
(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
CROSSREFS
Sequence in context: A147793 A352201 A052298 * A179938 A081412 A082863
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Oct 10 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 02:22 EDT 2024. Contains 372143 sequences. (Running on oeis4.)