OFFSET
1,1
COMMENTS
Complement of A236562. - Jaroslav Krizek, Feb 09 2014
Positions of zeros in A060990, leaf-nodes in the tree generated by edge-relation A049820(child) = parent. - Antti Karttunen, Oct 06 2015
Since A000005(x) <= 1 + x/2, n is in the sequence if there are no x <= 2*(n+1) with n = x - d(x). - Robert Israel, Oct 12 2015
This can be improved as: n is in the sequence if there are no x <= n + A002183(2+A261100(n)) with n = x - d(x). Cf. also A070319, A262686. - Antti Karttunen, Oct 12 2015
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
MAPLE
N:= 1000: # to get all terms <= N
sort(convert({$1..N} minus {seq(x - numtheory:-tau(x), x=1..2*(1+N))}, list)); # Robert Israel, Oct 12 2015
MATHEMATICA
lim = 10000; Take[Complement[Range@ lim, Sort@ DeleteDuplicates@ Table[n - DivisorSigma[0, n], {n, lim}]], 57] (* Michael De Vlieger, Oct 13 2015 *)
PROG
(PARI)
allocatemem((2^31)+(2^30));
v060990 = vector(uplim);
for(n=3, uplim, v060990[n-numdiv(n)]++);
A060990 = n -> if(!n, 2, v060990[n]);
uplim2 = 36756720;
n=0; k=1; while(n <= uplim2, if(0==A060990(n), write("b045765_big.txt", k, " ", n); k++); n++; );
\\ Antti Karttunen, Oct 09 2015
(Scheme)
;; Using also IntSeq-library of Antti Karttunen, Oct 06 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved