login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A060662 Sigma(x) = n has exactly six solutions. 1
168, 252, 288, 384, 768, 1248, 1584, 1860, 2052, 2480, 2904, 3906, 3968, 4116, 4176, 4224, 4256, 4284, 4392, 4416, 4620, 5824, 5850, 5856, 5928, 6084, 6192, 6216, 6600, 6636, 6660, 6888, 6944, 7104, 7182, 7308, 7840, 7992, 8184, 8976, 9114, 9480, 9856 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
168 = sigma(60) = sigma(78) = sigma(92) = sigma(123) = sigma(143) = sigma(167).
MAPLE
N:= 10^4: # for terms <= N
V:= Vector(N):
for n from 1 to N-1 do
s:= numtheory:-sigma(n);
if s <= N then V[s]:= V[s]+1 fi
od:
select(t -> V[t]=6, [$1..N]); # Robert Israel, Nov 21 2019
MATHEMATICA
a = Table[ 0, {10000} ]; Do[ s = DivisorSigma[ 1, n ]; If[ s < 10001, a[ [ s ] ]++ ], {n, 1, 10000} ]; Select[ Range[ 10000 ], a[ [ # ] ] == 6 & ]
CROSSREFS
Sequence in context: A117529 A338605 A196591 * A171256 A059463 A302365
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Apr 18 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)