OFFSET
0,2
COMMENTS
Invented by the HR concept formation program.
a(13) > 10^13. - Giovanni Resta, Feb 24 2020
LINKS
S. Colton, Refactorable Numbers - A Machine Invention, J. Integer Sequences, Vol. 2, 1999, #2.
FORMULA
Sets record for |{b in N : b + tau(b) = n}|.
EXAMPLE
1 [ first with 0 ].
2=1+tau(1) [ first with 1 ].
7=4+tau(4) and 5+tau(5) [ first with 2 ].
38=30+tau(30) and 32+tau(32) and 34+tau(34) [ first with 3 ].
PROG
(PARI) nbi(n) = {nb = 0; for (i = 1, n, if ((i + numdiv(i)) == n, nb++); ); nb; }
lista(nn) = {rec = -1; for (n = 1, nn, new = nbi(n); if (new > rec, print1(n, ", "); rec = new; ); ); } \\ Michel Marcus, Aug 31 2013
CROSSREFS
KEYWORD
hard,nonn,nice,more
AUTHOR
Simon Colton (simonco(AT)cs.york.ac.uk)
EXTENSIONS
More terms from Julian Richardson (julianr(AT)dai.ed.ac.uk), who has searched up to 100000000.
a(10)-a(11) from Donovan Johnson, Feb 19 2009
a(12) from Giovanni Resta, Feb 24 2020
STATUS
approved