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!)
A301939 Integers whose arithmetic derivative is equal to their Dedekind function. 4

%I #25 Feb 23 2022 22:53:47

%S 8,81,108,2500,2700,3375,5292,13068,15625,18252,31212,38988,57132,

%T 67228,90828,94500,103788,147852,181548,199692,231525,238572,303372,

%U 375948,401868,484812,544428,575532,674028,713097,744012,855468,1016172,1058841,1101708,1145772

%N Integers whose arithmetic derivative is equal to their Dedekind function.

%C If n = Product_{k=1..j} p_k ^ i_k with each p_k prime, then psi(n) = n * Product_{k=1..j} (p_k + 1)/p_k and n' = n*Sum_{k=1..j} i_k/p_k.

%C Thus every number of the form p^(p+1), where p is prime, is in the sequence.

%C The sequence also contains every number of the form 108*p^2 where p is a prime > 3, or 108*p^3*(p+2) where p > 3 is in A001359. - _Robert Israel_, Mar 29 2018

%H Paolo P. Lava, <a href="/A301939/b301939.txt">Table of n, a(n) for n = 1..100</a>

%F Solutions of the equation n' = psi(n).

%e 5292 = 2^2 * 3^3 * 7^2.

%e n' = 5292*(2/2 + 3/3 + 2/7) = 12096,

%e psi(n) = 5292*(1 + 1/2)*(1 + 1/3)*(1 + 1/7) = 12096.

%p with(numtheory): P:=proc(n) local a,p; a:=ifactors(n)[2];

%p if add(op(2,p)/op(1,p),p=a)=mul(1+1/op(1,p),p=a) then n; fi; end:

%p seq(P(i),i=1..10^6);

%t selQ[n_] := Module[{f = FactorInteger[n], p, e}, Product[{p, e} = pe; p^e + p^(e-1), {pe, f}] == Sum[{p, e} = pe; (n/p)e, {pe, f}]];

%t Select[Range[10^6], selQ] (* _Jean-François Alcover_, Oct 16 2020 *)

%o (PARI) dpsi(f) = prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1));

%o ader(n, f) = sum(i=1, #f~, n/f[i, 1]*f[i, 2]);

%o isok(n) = my(f=factor(n)); dpsi(f) == ader(n, f); \\ _Michel Marcus_, Mar 29 2018

%Y Cf. A001359, A001615, A003415, A166374, A342458. A345005 (gives the odd terms).

%Y Subsequence of A345003.

%K nonn,easy

%O 1,1

%A _Paolo P. Lava_, Mar 29 2018

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 September 14 16:47 EDT 2024. Contains 375929 sequences. (Running on oeis4.)