|
| |
|
|
A062385
|
|
Numbers n such that sigma(n)-phi(n) is a perfect cube.
|
|
2
| |
|
|
1, 30, 44, 87, 169, 247, 515, 630, 707, 910, 1067, 1255, 1356, 1691, 2128, 2188, 2291, 2438, 2574, 2627, 2747, 2867, 3668, 3689, 4063, 4295, 5206, 5359, 5999, 6331, 6583, 6835, 7719, 8286, 8968, 8991, 9383
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,1000
|
|
|
EXAMPLE
| sigma(30)=phi(30) = 72-8 = 64 = 4^3, so 30 is a term of the sequence.
|
|
|
MATHEMATICA
| Select[Range[10^4], IntegerQ[(DivisorSigma[1, # ] - EulerPhi[ # ])^(1/3)] &]
|
|
|
PROG
| (PARI) iscube(x)= { if (x==0, return(1)); f=factor(x)~; for(i=1, length(f), if (t=f[2, i]%3, return(0))); return(1); } { n=0; for (m=1, 10^9, if (iscube(sigma(m) - eulerphi(m)), write("b062385.txt", n++, " ", m); if (n==1000, break)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 06 2009]
|
|
|
CROSSREFS
| Sequence in context: A090692 A196677 A102843 * A164803 A152569 A114944
Adjacent sequences: A062382 A062383 A062384 * A062386 A062387 A062388
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Feb 13 2002
|
| |
|
|