A226457 D(n,2^n), where D is the binary graph metric, as in A226456.
1, 1, 4, 2, 5, 8, 9, 5, 8, 11, 12, 15, 16, 17, 18, 12, 15, 18, 19, 22, 23, 24, 25, 28, 29, 30, 31, 32, 33, 34, 35, 27, 30, 33, 34, 37, 38, 39, 40, 43, 44, 45, 46, 47, 48, 49, 50, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 58, 61, 64, 65
Offset: 1
Examples
Using Method 1: D(1,2) = 1 + 2 - 2*1 = 1. D(2,4) = 2 + 3 - 2*2 = 1 D(3,8) = 2 + 4 - 2*1 = 4
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A226246.
Programs
-
Mathematica
r = 1/2; f[x_] := Floor[r*x]; z = 20; g[x_] := FixedPointList[f, x]; u[x_] := Length[g[x]]; v[x_, y_] := Max[Intersection[g[x], g[y]]]; d[x_, y_] := u[x] + u[y] - 2*Length[g[v[x, y]]]; Table[d[n, n + 1], {n, 1, 100}]
Comments