login
A230019
Numbers n such that sigma(n) + phi(n) = reversal(n) - 3.
4
199993, 17333334, 19999993, 199999999993, 1999999999993
OFFSET
1,1
COMMENTS
If n=2*10^m-7 is a semiprime then n is in the sequence. Also if p=(1/999)*(962*1000^m+37) is prime then 18*p is in the sequence. All known terms are of these two forms.
a(6) > 10^13. - Giovanni Resta, Feb 08 2014
MATHEMATICA
r[n_] := FromDigits[Reverse[IntegerDigits[n]]]; Do[If[DivisorSigma[1, n] + EulerPhi[n] == r[n]-3, Print[n]], {n, 1000000000}]
KEYWORD
nonn,base,more
AUTHOR
Farideh Firoozbakht, Dec 02 2013
EXTENSIONS
a(4)-a(5) from Giovanni Resta, Feb 06 2014
STATUS
approved