A261895 Decimal expansion of the lower limit of A162795(i)/i^2.
2, 2, 5, 6, 5, 2, 9, 1, 4, 2
Offset: 0
Examples
0.2256529142...
References
- D. Applegate, Omar E. Pol and N. J. A. Sloane, The Toothpick Sequence and Other Sequences from Cellular Automata, Congressus Numerantium, Vol. 206 (2010), 157-191
Links
- David Applegate, Omar E. Pol and N. J. A. Sloane, The Toothpick Sequence and Other Sequences from Cellular Automata, Congressus Numerantium, Vol. 206 (2010), 157-191. [There is a typo in Theorem 6: (13) should read u(n) = 4.3^(wt(n-1)-1) for n >= 2.], which is also available at arXiv:1004.3036v2, [math.CO], 2010.
- Steven R. Finch, Toothpicks and Live Cells, July 21, 2015. [Cached copy, with permission of the author]
- N. J. A. Sloane, Catalog of Toothpick and Cellular Automata Sequences in the OEIS
Programs
-
Mathematica
T = 1; t[0] = 0; t[1] = 1; lst = {1}; Do[twon = 2^n; Tmin = 1; imin = 1; Do[If[i == twon, t[i] = twon, t[i] = 2*t[i - twon] + t[i - twon + 1]; If[OddQ[i], T = T + t[i]; Ttest = T/(i*i)]; If[ Ttest
Comments