Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #8 Feb 12 2018 16:45:02
%S 2,3,5,6,9,10,11,13,16,17,18,19,20,21,22,23,25,26,27,29,30,31,33,34,
%T 35,36,37,38,40,41,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,61,
%U 62,64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,81,82,83,85,86,87,88,89,92,93
%N Numbers n such that the equation sigma(sigma(x)) = n has no solutions.
%H Ivan Neretin, <a href="/A162923/b162923.txt">Table of n, a(n) for n = 1..10000</a>
%F {A000027} minus {A070286}.
%t mx = 100; Complement[Range[mx], Table[Nest[DivisorSigma[1, #] &, n, 2], {n, mx}]] (* _Ivan Neretin_, Feb 12 2018 *)
%Y Complement of A070286.
%K nonn
%O 1,1
%A _Jaroslav Krizek_, Jul 17 2009