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!)
A325652 a(n) = the sum of numbers k such that sigma(k) = sigma(n). 3
1, 2, 3, 4, 5, 17, 7, 8, 9, 27, 17, 12, 13, 52, 52, 41, 27, 18, 19, 87, 52, 22, 52, 121, 41, 87, 27, 67, 29, 253, 52, 32, 115, 87, 115, 36, 37, 121, 67, 187, 87, 250, 43, 192, 45, 253, 115, 123, 49, 50, 253, 149, 87, 292, 253, 292, 136, 187, 121, 663, 61, 250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n)=n if n is in A211656, otherwise a(n) > n. - Robert Israel, Jul 04 2019
LINKS
EXAMPLE
a(6) = 17 because sigma(6) = sigma(11) = 12; 6 + 11 = 17.
MAPLE
N:= 1000: # to get a(n) before the first n with sigma(n) > N
S:= map(numtheory:-sigma, [$1..N-1]):
m:=min(select(t -> S[t]>N, [$1..N-1]))-1:
1, seq(convert(select(s -> S[s]=S[n], [$1..S[n]-1]), `+`), n=2..m); # Robert Israel, Jul 04 2019
MATHEMATICA
a[n_] := Block[{s = DivisorSigma[1, n]}, Sum[Boole[s == DivisorSigma[1, k]] k, {k, s}]]; Array[a, 62] (* Giovanni Resta, Jul 03 2019 *)
PROG
(Magma) [&+[k: k in[1..10000] | SumOfDivisors(k) eq SumOfDivisors(n)]: n in [1..100]]
(PARI) a(n) = {my(s=sigma(n)); sum(k=1, s, (sigma(k)==s)*k); } \\ Michel Marcus, May 12 2019
CROSSREFS
See A070242 and A325653 for number and product of such numbers k.
Sequence in context: A240906 A117885 A030574 * A283653 A162657 A333046
KEYWORD
nonn,look
AUTHOR
Jaroslav Krizek, May 12 2019
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)