A234306 a(n) = n + 1 - d(2n), where d(n) is the number of divisors of n.
0, 0, 0, 1, 2, 1, 4, 4, 4, 5, 8, 5, 10, 9, 8, 11, 14, 10, 16, 13, 14, 17, 20, 15, 20, 21, 20, 21, 26, 19, 28, 26, 26, 29, 28, 25, 34, 33, 32, 31, 38, 31, 40, 37, 34, 41, 44, 37, 44, 42, 44, 45, 50, 43, 48, 47, 50, 53, 56, 45, 58, 57, 52, 57, 58, 55, 64, 61
Offset: 1
Examples
a(6) = 1; In this case, 2(6) = 12 has exactly 6 partitions into two parts: (11,1), (10,2), (9,3), (8,4), (7,5), (6,6). Note that 5 does not divide 7 but the smallest parts of the other partitions divide their corresponding largest parts. Therefore, a(6) = 1.
Links
Programs
-
GAP
List([1..10^4], n->n+1-Tau(2*n)); # Muniru A Asiru, Feb 04 2018
-
Maple
with(numtheory); A234306:=n->n + 1 - tau(2*n); seq(A234306(n), n=1..100);
-
Mathematica
Table[n + 1 - DivisorSigma[0, 2n], {n, 100}]
-
PARI
a(n) = n + 1 - numdiv(2*n); \\ Michel Marcus, Dec 23 2013
Comments