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!)
A348586 Numbers k such that abs(A328258(k)) = abs(A328258(k+1)). 1

%I #11 Oct 24 2021 10:03:31

%S 1,11,40,179,695,928,991,1079,2772,2799,2839,6687,7632,7739,7960,8568,

%T 9347,10703,11008,11472,12847,12935,13580,14064,16000,16260,17135,

%U 20944,26432,27999,35399,37236,42251,42756,44199,55308,56419,68976,70127,74671,77748,83099

%N Numbers k such that abs(A328258(k)) = abs(A328258(k+1)).

%C Equivalently, numbers k such that A328258(k) = -A328258(k+1).

%H Amiram Eldar, <a href="/A348586/b348586.txt">Table of n, a(n) for n = 1..1000</a>

%e 1 is a term since abs(A328258(1)) = abs(A328258(2)) = 1.

%e 11 is a term since abs(A328258(11)) = abs(A328258(12)) = 12.

%t f[p_, e_] := 1 - (-1)^p*(p^e); s[1] = 1; s[n_] := Abs[Times @@ (f @@@ FactorInteger[n])]; Select[Range[10^5], s[#] == s[# + 1] &]

%o (PARI) f(n) = sumdiv(n, d, if (gcd(d, n/d) == 1, (-1)^(d + 1) * d)); \\ A328258

%o isok(k) = f(k) + f(k+1) == 0; \\ _Michel Marcus_, Oct 24 2021

%Y The unitary version of A348585.

%Y Cf. A328258.

%Y Similar sequences: A002961, A064125, A206368, A333261.

%K nonn

%O 1,2

%A _Amiram Eldar_, Oct 24 2021

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 16 22:04 EDT 2024. Contains 375979 sequences. (Running on oeis4.)