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

A281685
Numbers k such that A001221(k) = A001221(A003415(k)).
2
4, 16, 18, 20, 21, 24, 26, 27, 33, 35, 38, 40, 44, 45, 48, 50, 51, 52, 56, 57, 62, 63, 65, 68, 69, 74, 75, 76, 77, 80, 85, 86, 91, 92, 93, 95, 96, 98, 99, 104, 106, 108, 111, 115, 117, 119, 122, 123, 126, 129, 133, 134, 135, 136, 141, 143, 144, 145, 146, 147
OFFSET
1,1
COMMENTS
Numbers k such that the number of distinct prime divisors of k is equal to the number of distinct prime divisors of the arithmetic derivative of k.
LINKS
MATHEMATICA
a[n_] := If[Abs@n < 2, 0, n Total[#2/#1 & @@@ FactorInteger[Abs@n]]];
Select[Range[100], PrimeNu[#] == PrimeNu[a[#]] &] (* G. C. Greubel, Apr 23 2017 *)
PROG
(PARI) arde(n) = sum(i=1, #f=factor(n)~, n/f[1, i]*f[2, i])
select(k->omega(k)==omega(arde(k)), vector(200, k, k+1))
CROSSREFS
KEYWORD
nonn
AUTHOR
Colin Barker, Jan 27 2017
STATUS
approved