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.

A140085 Period 8: repeat [0,1,1,2,1,2,2,3].

Original entry on oeis.org

0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1, 2, 1, 2, 2, 3, 0, 1, 1
Offset: 0

Views

Author

Nadia Heninger and N. J. A. Sloane, Jun 03 2008

Keywords

Comments

Also fix e = 8; then a(n) = minimal Hamming distance between the binary representation of n and the binary representation of any multiple ke (0 <= k <= n/e) which is a child of n.
A number m is a child of n if the binary representation of n has a 1 in every position where the binary representation of m has a 1.

Programs

  • Fortran
    ! See link in A140080 for Fortran program.
  • Mathematica
    PadRight[{},100,{0,1,1,2,1,2,2,3}] (* Harvey P. Dale, Jun 16 2025 *)

Formula

a(n) = 3/2 -cos(Pi*n/4)/4 -(1+sqrt(2))*sin(Pi*n/4)/4 -cos(Pi*n/2)/2 -sin(Pi*n/2)/2 -cos(3*Pi*n/4)/4 +(1-sqrt(2))*sin(3*Pi*n/4)/4 -(-1)^n/2. - R. J. Mathar, Oct 08 2011
a(n) = a(n-8). G.f.: -x*(3*x^6+2*x^5+2*x^4+x^3+2*x^2+x+1) / ((x-1)*(x+1)*(x^2+1)*(x^4+1)). - Colin Barker, Jul 26 2013