|
| |
|
|
A077102
|
|
Smallest m such that GCD[a+b,a-b]=n, where a=sigma[n],b=phi[n].
|
|
2
| |
|
|
4, 1, 18, 21, 200, 14, 3364, 12, 722, 328, 9801, 42, 25281, 116, 1800, 15, 36992, 810, 4414201, 88, 196, 29161, 541696, 35, 2928200, 1413, 103968, 284, 98942809, 488, 1547536, 364, 19602, 17536, 814088, 370, 49042009, 55297, 1521, 440, 3150464641
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
FORMULA
| a(n)=Min{x; A077099(x)=n}
|
|
|
EXAMPLE
| n=10,a(10)=328, sigma[328]=630,phi[328]=160, sigma(328)+phi(328)=790, sigma(328)-phi(328)=470, GCD[790,470]=10-n; for n=odd number, a[n] should be either a square or twice a square and so quicker search for large values is possible, like e.g. for n=97:a[97]=m=190077688441=435979^2 is the smallest solution.
|
|
|
MATHEMATICA
| f[x_] := Apply[GCD, {DivisorSigma[1, x]+EulerPhi[x], DivisorSigma[1, x]-EulerPhi[x]}] t=Table[0, {100}]; Do[s=f[n]; If[s<101&&t[[s]]==0, t[[s]]=n], {n, 1, 10^13}];
|
|
|
CROSSREFS
| Cf. A000203, A000010, A077099-A077102, A051612, A065387.
Sequence in context: A013631 A113355 A201201 * A192722 A057968 A141233
Adjacent sequences: A077099 A077100 A077101 * A077103 A077104 A077105
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Labos E. (labos(AT)ana.sote.hu), Nov 12 2002
|
| |
|
|