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!)
A340676 If n is of the form s^(2^e), where s is a squarefree number, and e >= 0, then a(n) = 1+e, otherwise a(n) = 0. 4

%I #19 Feb 13 2021 14:39:48

%S 0,1,1,2,1,1,1,0,2,1,1,0,1,1,1,3,1,0,1,0,1,1,1,0,2,1,0,0,1,1,1,0,1,1,

%T 1,2,1,1,1,0,1,1,1,0,0,1,1,0,2,0,1,0,1,0,1,0,1,1,1,0,1,1,0,0,1,1,1,0,

%U 1,1,1,0,1,1,0,0,1,1,1,0,3,1,1,0,1,1,1,0,1,0,1,0,1,1,1,0,1,0,0,2,1,1,1,0,1

%N If n is of the form s^(2^e), where s is a squarefree number, and e >= 0, then a(n) = 1+e, otherwise a(n) = 0.

%H Antti Karttunen, <a href="/A340676/b340676.txt">Table of n, a(n) for n = 1..65537</a>

%H <a href="/index/Eu#epf">Index entries for sequences computed from exponents in factorization of n</a>

%F a(n) = A297109(A225546(n)).

%F For n > 1, a(n) = A104117(A267116(n)). - _Peter Munn_, Feb 05 2021

%t a[1] = 0; a[n_] := If[Length[(u = Union[FactorInteger[n][[;; , 2]]])] == 1 && u[[1]] == 2^(e = IntegerExponent[u[[1]], 2]), e + 1, 0]; Array[a, 100] (* _Amiram Eldar_, Feb 10 2021 *)

%o (PARI)

%o A001511(n) = 1+valuation(n,2);

%o A209229(n) = (n && !bitand(n,n-1));

%o A104117(n) = (A209229(n)*A001511(n));

%o A267116(n) = if(n>1, fold(bitor, factor(n)[, 2]), 0);

%o A340676(n) = if(1==n,0,A104117(A267116(n)));

%Y Cf. A005117, A104117, A225546, A267116, A297109, A340673, A340675.

%Y Positions of zeros: {1} U A340681, of 1's: A005117 \ {1}, of 2's: A062503 \ {1}, of 3's: A113849.

%Y Positions of nonzero terms: A340682, of terms > 1: A340674.

%K nonn

%O 1,4

%A _Antti Karttunen_, Feb 01 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 April 19 04:12 EDT 2024. Contains 371782 sequences. (Running on oeis4.)