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

A241649
Numbers m such that the GCD of the x's that satisfy sigma(x) = m is 4.
5
7, 210, 378, 630, 1904, 3570, 6188, 6510, 7154, 9296, 9800, 10220, 12446, 13664, 14378, 17654, 17780, 18536, 19110, 19376, 19530, 20034, 20580, 21266, 23240, 23310, 24150, 24584, 25298, 26754, 27930, 28938, 29106, 29610, 30380, 31640, 34146, 34230, 34664
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..698 from Robert Israel)
EXAMPLE
sigma(104) = sigma(116) = 210, and gcd(104, 116) = 4, hence 210 is in the sequence.
Likewise 6510 is obtained with sigma of [2600, 2900, 3464, 3716], with gcd 4.
MAPLE
N:= 10^5: # for terms <= N
V:= Vector(N):
for x from 1 to N do
s:= numtheory:-sigma(x);
if s <= N then
if V[s] = 0 then V[s]:= x
else V[s]:= igcd(V[s], x)
fi
fi
od:
select(t -> V[t]=4, [$1..N]); # Robert Israel, Aug 18 2019
PROG
(PARI) is(k) = gcd(invsigma(k)) == 4; \\ Amiram Eldar, Dec 19 2024, using Max Alekseyev's invphi.gp
KEYWORD
nonn
AUTHOR
Michel Marcus, Apr 26 2014
STATUS
approved