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!)
A267113 Bitwise-OR of the exponents of all 4k+1 primes in the prime factorization of n. 6

%I #11 Feb 05 2016 20:42:08

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

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

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

%N Bitwise-OR of the exponents of all 4k+1 primes in the prime factorization of n.

%H Antti Karttunen, <a href="/A267113/b267113.txt">Table of n, a(n) for n = 1..10000</a>

%F a(n) = A267116(A170818(n)).

%F Other identities. For all n >= 0:

%F a(n) = a(A170818(n)). [The result depends only on the prime factors of the form 4k+1.]

%F a(n) <= A083025(n).

%e For n = 65 = 5 * 13 = (4+1)^1 * ((3*4)+1)^1, bitwise-or of 1 and 1 is 1, thus a(65) = 1.

%o (Scheme, with memoization-macro definec)

%o (definec (A267113 n) (cond ((< n 5) 0) ((even? n) (A267113 (/ n 2))) ((= 3 (modulo (A020639 n) 4)) (A267113 (A032742 n))) (else (A003986bi (A067029 n) (A267113 (A028234 n)))))) ;; A003986bi implements bitwise-or (see A003986).

%Y Cf. A170818, A267116, A260728.

%Y Cf. A004144 (indices of zeros), A009003 (of nonzeros).

%Y Differs from both A046080 and A083025 for the first time at n=65, which here a(65) = 1.

%K nonn

%O 1,25

%A _Antti Karttunen_, Feb 03 2016

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 23 16:31 EDT 2024. Contains 375396 sequences. (Running on oeis4.)