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!)
A331748 a(n) = A002487(n) XOR A002487(A163511(n)). 3
1, 0, 0, 0, 0, 7, 0, 0, 0, 12, 7, 2, 0, 1, 0, 7, 0, 11, 12, 12, 7, 26, 2, 14, 0, 11, 1, 1, 0, 15, 7, 0, 0, 16, 11, 34, 12, 41, 12, 37, 7, 27, 26, 26, 2, 22, 14, 4, 0, 25, 11, 27, 1, 31, 1, 26, 0, 12, 15, 0, 7, 15, 0, 3, 0, 71, 16, 116, 11, 126, 34, 108, 12, 91, 41, 107, 12, 11, 37, 98, 7, 76, 27, 74, 26, 61, 26, 43, 2, 53, 22, 42, 14, 34, 4, 22, 0, 57 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = A002487(n) XOR A323901(n) = A002487(n) XOR A002487(A163511(n)).
a(2^n) = 0 for all n >= 0.
PROG
(PARI)
A002487(n) = { my(a=1, b=0); while(n>0, if(bitand(n, 1), b+=a, a+=b); n>>=1); (b); }; \\ From A002487
A005940(n) = { my(p=2, t=1); n--; until(!n\=2, if((n%2), (t*=p), p=nextprime(p+1))); t }; \\ From A005940
A054429(n) = ((3<<#binary(n\2))-n-1); \\ From A054429
A163511(n) = if(!n, 1, A005940(1+A054429(n)));
A331748(n) = bitxor(A002487(A163511(n)), A002487(n));
CROSSREFS
Sequence in context: A005070 A135435 A339442 * A171917 A198919 A019933
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Feb 05 2020
STATUS
approved

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 8 18:48 EDT 2024. Contains 375023 sequences. (Running on oeis4.)