cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A324717 Xor-Moebius transform of A324716, where A324716(n) = bitxor(2*A156552(n), bitand(2*A156552(n), A323243(n))).

Original entry on oeis.org

0, 2, 4, 0, 8, 14, 16, 4, 4, 24, 32, 26, 64, 50, 8, 0, 128, 28, 256, 48, 20, 96, 512, 48, 8, 192, 4, 102, 1024, 26, 2048, 24, 100, 384, 24, 28, 4096, 770, 64, 96, 8192, 118, 16384, 192, 8, 1536, 32768, 104, 16, 58, 388, 384, 65536, 52, 40, 196, 256, 3074, 131072, 114, 262144, 6144, 68, 8, 200, 166, 524288, 772, 1540, 120, 1048576
Offset: 1

Views

Author

Antti Karttunen, Mar 15 2019

Keywords

Comments

Properties of Xor-Moebius transform are explained in A295901.

Crossrefs

Programs

  • PARI
    A324717(n) = { my(v=0); fordiv(n, d, if(issquarefree(n/d), v=bitxor(v, A324716(d)))); (v); }; \\ For other code, see A324716.