cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A261895 Decimal expansion of the lower limit of A162795(i)/i^2.

Original entry on oeis.org

2, 2, 5, 6, 5, 2, 9, 1, 4, 2
Offset: 0

Views

Author

Robert Price, Sep 05 2015

Keywords

Comments

Sequence suggested by Omar E. Pol.
Similar to the constant mentioned in the Applegate-Pol-Sloane article, Section 5, the fractal-like structure. It is also mentioned in A139250 and A170927.
It appears that this sequence is a quarter of A261313 and half of A195853.

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

Crossrefs

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