OFFSET
1,7
COMMENTS
Invented by the HR concept formation program.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
S. Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2, 1999, #2.
FORMULA
a(n) = |{b in N : b + tau(b) = n}|
EXAMPLE
a(7) = 2 because (i) 4+tau(4)=7 and (ii) 5+tau(5)=7.
MAPLE
N:= 200: # to get a(1)..a(N)
A:= Vector(N):
for b from 1 to N do
v:= b + numtheory:-tau(b);
if v <= N then A[v]:= A[v]+1 fi
od:
convert(A, list); # Robert Israel, Jun 10 2018
PROG
(PARI) a(n) = sum(i=1, n, i+numdiv(i) == n); \\ Michel Marcus, Oct 01 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Simon Colton (simonco(AT)cs.york.ac.uk)
EXTENSIONS
a(87)=0 corrected by Michel Marcus, Aug 31 2013
STATUS
approved