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 April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)