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.

A174375 a(n) = n^2 - XOR(n^2, n).

Original entry on oeis.org

0, 1, -2, -1, -4, -3, 2, -5, -8, -7, -10, 7, -12, 5, -6, -13, -16, -15, -18, -17, 12, 13, -14, 11, -24, 9, -26, 23, 4, -11, -22, -29, -32, -31, -34, -33, -36, -35, 34, 27, -40, -39, 22, 39, -44, 37, -38, 19, -48, 17, -50, 15, -20, 45, 18, -21, -56, 41, 6, -9, -28
Offset: 0

Views

Author

Carl R. White, Mar 17 2010

Keywords

Comments

Plotting the points of a(n) versus n up to a power of 2 approximates a Sierpinski gasket.
It follows from a(x + 2^k) = a(x) + 2^k (mod 2^(k+1)) that a is a bijection modulo 2^k for all k, as observed by Erling Ellingsen. Therefore, a is injective. Is it a bijection when considered as a function from Z to Z? - David Radcliffe, May 06 2023

Crossrefs

Cf. A169810.

Programs

Formula

a(n) = n^2 - XOR(n^2, n), where XOR is bitwise.