OFFSET
0,3
COMMENTS
The sequence is the relationship of holes to fractal by area of Gaussian scale 2 modulo two matrices.
The area ratio: a(n)/(n+1)^2 varies fractally while approaching a maximum near 0.6375 and then, declining.
MATHEMATICA
Clear[t, n, k, a]
t[n_, k_] = If[k <= n, 1 + Floor[n!*2^(-(k - n/2)^2)/2], 0]
TableForm[Table[Table[Table[Mod[t[m, k], 2], {k, 0, n}], {m, 0, n}], { n, 0, 10}]]
(*A006046 like*)
Table[Sum[Sum[Mod[t[m, k], 2], {k, 0, m}], {m, 0, n}], {n, 0, 30}]
a = Table[(n + 1)^2 - Sum[Sum[Mod[t[m, k], 2], { k, 0, m}], {m, 0, n}], {n, 0, 40}]
CROSSREFS
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Dec 07 2009
STATUS
approved