login

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”).

A083248
Numbers satisfying the following inequalities: A045763[n]>A000010[n]>A000005[n].
1
36, 40, 42, 48, 50, 54, 56, 60, 66, 70, 72, 78, 80, 84, 88, 90, 96, 98, 100, 102, 104, 105, 108, 110, 112, 114, 120, 126, 130, 132, 136, 138, 140, 144, 150, 152, 154, 156, 160, 162, 168, 170, 174, 176, 180, 182, 184, 186, 190, 192, 196, 198, 200, 204, 208, 210
OFFSET
1,1
EXAMPLE
n=100: d[n]=9,phi[n]=40,unrelateds[n]=100-9-40+1=52 so
52>40>9 holds; primes are not here since A045763[p]=0 < A000005[p]=2.
MATHEMATICA
Do[r=EulerPhi[n]; d=DivisorSigma[0, n]; u=n-r-d+1; If[Greater[u, r]&&Greater[r, d], Print[n, {d, r, u}]], {n, 1, 1000}]
KEYWORD
nonn
AUTHOR
Labos Elemer, May 07 2003
STATUS
approved