OFFSET
1,1
COMMENTS
If a(n) is odd then 2*a(n) is also in the sequence.
If p, p+2, 3p+2 and 3p+8 are primes, then (p+2)*(3p+2) is in the sequence. Dickson's conjecture implies that there are infinitely many such p. Terms of this form include 55, 119, 1007, 118007, 6120407, 8350007, 13083407, 51875207. - Robert Israel, Nov 20 2016
LINKS
Robert Israel, Table of n, a(n) for n = 1..448
EXAMPLE
MAPLE
select(n -> numtheory:-sigma(n) = numtheory:-sigma(n - numtheory:-tau(n)), [$2..10^5]); # Robert Israel, Nov 20 2016
MATHEMATICA
Select[Range[10^5], DivisorSigma[1, #]==DivisorSigma[1, #-DivisorSigma[0, #]]&]
PROG
(PARI) isok(n) = sigma(n) == sigma(n - numdiv(n)); \\ Michel Marcus, Oct 09 2016
(Magma) [n: n in [3..50000] | DivisorSigma(1, n) eq DivisorSigma(1, n-DivisorSigma(0, n))]; // Vincenzo Librandi, Nov 21 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Ivan N. Ianakiev, Oct 08 2016
STATUS
approved