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!)
A286529 a(n) = d(n+d(n)), where d(n) is the number of divisors of n (A000005). 5
2, 3, 2, 2, 2, 4, 3, 6, 6, 4, 2, 6, 4, 6, 2, 4, 2, 8, 4, 4, 3, 4, 3, 6, 6, 8, 2, 4, 2, 4, 4, 4, 2, 4, 4, 6, 4, 8, 2, 10, 2, 6, 6, 6, 4, 6, 3, 4, 6, 8, 4, 4, 4, 4, 2, 7, 2, 4, 2, 12, 6, 8, 4, 2, 4, 4, 4, 4, 2, 8, 2, 12, 6, 8, 5, 4, 5, 4, 5, 12, 4, 4, 4, 12, 2, 12, 4, 12, 4, 8, 4, 6, 2, 6, 6, 12, 6, 8, 8, 2, 2, 8, 8, 10, 2, 8, 2, 16, 4, 4, 4, 4, 4, 4, 4, 4, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Aleksandar Ivić, An asymptotic formula involving the enumerating function of finite Abelian groups, Publikacije Elektrotehničkog fakulteta, Serija Matematika 3 (1992), pp. 61-66.
Imre Kátai, On a problem of A. Ivic, Mathematica Pannonica, Vol. 18, No. 1 (2007), pp. 11-18.
FORMULA
a(n) = A000005(A062249(n)) = A000005(n+A000005(n)).
Sum_{k=1..n} a(k) ~ D*n*log(n) + O(n*log(n)/log(log(n))), where D > 0 is a constant (conjectured with an error O(n) by Ivić, 1992; proven by Kátai, 2007). - Amiram Eldar, Jul 08 2020
MATHEMATICA
Table[DivisorSigma[0, n + DivisorSigma[0, n]], {n, 117}] (* Michael De Vlieger, May 21 2017 *)
PROG
(PARI) A286529(n) = numdiv(n+numdiv(n));
(Scheme) (define (A286529 n) (A000005 (+ n (A000005 n))))
(Python)
from sympy import divisor_count as d
def a(n): return d(n + d(n)) # Indranil Ghosh, May 21 2017
CROSSREFS
Sequence in context: A304689 A288677 A187757 * A306225 A373249 A077199
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 21 2017
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 July 20 23:17 EDT 2024. Contains 374461 sequences. (Running on oeis4.)