login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A171377 Zeros in a A171246 modulo two matrix:a(n)=(n+1)^2-Sum[Sum[Mod[A171246(m,k),2],{k,0,n}],{m,0,n}] 0
0, 1, 4, 7, 11, 16, 22, 35, 45, 60, 74, 91, 107, 124, 142, 161, 179, 204, 228, 255, 277, 306, 332, 363, 389, 418, 450, 493, 529, 562, 600, 635, 671, 712, 754, 799, 839, 890, 940 (list; graph; refs; listen; history; text; internal format)
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.
LINKS
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
Sequence in context: A310757 A231603 A134869 * A020683 A310758 A310759
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Dec 07 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 05:20 EDT 2024. Contains 371906 sequences. (Running on oeis4.)