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!)
A359593 Multiplicative with a(p^e) = 1 if p divides e, p^e otherwise. 2

%I #22 Nov 22 2023 10:47:29

%S 1,2,3,1,5,6,7,8,9,10,11,3,13,14,15,1,17,18,19,5,21,22,23,24,25,26,1,

%T 7,29,30,31,32,33,34,35,9,37,38,39,40,41,42,43,11,45,46,47,3,49,50,51,

%U 13,53,2,55,56,57,58,59,15,61,62,63,1,65,66,67,17,69,70,71,72,73,74,75,19,77,78,79,5,81,82,83,21

%N Multiplicative with a(p^e) = 1 if p divides e, p^e otherwise.

%C Each term a(n) is a multiple of both A083346(n) and A327938(n).

%H Antti Karttunen, <a href="/A359593/b359593.txt">Table of n, a(n) for n = 1..16384</a>

%F a(n) = n / A359594(n).

%F Sum_{k=1..n} a(k) ~ c * n^2, where c = (1/2) * Product_{p prime} (1 - p^(p-1)*(p-1)/(p^(2*p)-1)) = 0.4225104173... . - _Amiram Eldar_, Jan 11 2023

%t f[p_, e_] := If[Divisible[e, p], 1, p^e]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* _Amiram Eldar_, Jan 09 2023 *)

%o (PARI) A359593(n) = { my(f = factor(n)); prod(k=1, #f~, f[k, 1]^(f[k,2]*!!(f[k, 2]%f[k, 1]))); };

%o (Python)

%o from math import prod

%o from sympy import factorint

%o def A359593(n): return prod(p**e for p, e in factorint(n).items() if e%p) # _Chai Wah Wu_, Jan 10 2023

%Y Cf. A072873 (positions of 1's), A359594.

%Y Cf. also A083346, A327938, A342014, A359552.

%K nonn,mult

%O 1,2

%A _Antti Karttunen_, Jan 09 2023

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 August 2 21:22 EDT 2024. Contains 374875 sequences. (Running on oeis4.)