The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A300573 Numbers k such that k and the sum of proper divisors of k have the same prime signature. 2
1, 6, 9, 14, 22, 28, 30, 33, 38, 46, 51, 62, 66, 84, 86, 87, 91, 92, 93, 102, 118, 132, 141, 142, 145, 158, 159, 166, 168, 170, 174, 182, 183, 188, 190, 206, 217, 219, 246, 247, 248, 249, 253, 262, 264, 267, 278, 280, 285, 295, 301, 308, 310, 316, 321, 326 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
{ k | A046523(k) = A046523(A001065(k)) }.
MAPLE
s:= n-> sort(map(i-> i[2], ifactors(n)[2])):
a:= proc(n) option remember; local k; for k from 1+
a(n-1) while s(k)<>s(numtheory[sigma](k)-k) do od; k
end: a(0):=0:
seq(a(n), n=1..80);
MATHEMATICA
okQ[k_] := !PrimeQ[k] && Sort[FactorInteger[k][[All, 2]]] == Sort[FactorInteger[DivisorSigma[1, k] - k][[All, 2]]];
Select[Range[1000], okQ] (* Jean-François Alcover, Nov 23 2023 *)
CROSSREFS
Sequence in context: A316049 A316019 A316020 * A020717 A196993 A303162
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 08 2018
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 June 6 00:25 EDT 2024. Contains 373110 sequences. (Running on oeis4.)