OFFSET
0,4
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.
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,1).
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
PROG
See link in A140080 for Fortran program.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Nadia Heninger and N. J. A. Sloane, Jun 03 2008
STATUS
approved