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.

Showing 1-2 of 2 results.

A160923 Continued fraction for 1/6 + Soldner's constant.

Original entry on oeis.org

1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 11, 1, 3, 1, 1, 4, 1, 1, 1, 6, 2, 8, 3, 4, 20, 1, 7, 2, 1, 2, 3, 2, 1, 6, 1, 18, 1, 3, 1, 1, 4, 1, 2, 2, 1
Offset: 1

Views

Author

Fredrik Johansson, May 30 2009

Keywords

Comments

1/6 + Soldner's constant differs from the golden ratio by less than 2*10^-6. (1/6 + Soldner's constant = 1.61803590...; golden ratio = 1.61803398...). Hence the long initial sequence of 1's.

Crossrefs

Soldner's constant is A099803 Golden ratio is A000012

Programs

  • Mathematica
    ContinuedFraction[1/6 + FindRoot[LogIntegral[x], {x, 1.5}, WorkingPrecision->1000][[1,2]], 50]

A227539 Signature sequence of Soldner's constant (A070769).

Original entry on oeis.org

1, 2, 1, 3, 2, 1, 4, 3, 2, 5, 1, 4, 3, 6, 2, 5, 1, 4, 7, 3, 6, 2, 5, 8, 1, 4, 7, 3, 6, 9, 2, 5, 8, 1, 4, 7, 10, 3, 6, 9, 2, 5, 8, 11, 1, 4, 7, 10, 3, 6, 9, 12, 2, 5, 8, 11, 1, 4, 7, 10, 13, 3, 6, 9, 12, 2, 5, 8, 11, 14, 1, 4, 7, 10, 13, 3, 6, 9, 12, 15, 2, 5, 8
Offset: 1

Views

Author

Casey Mongoven, Jul 16 2013

Keywords

Comments

Arrange the numbers i+j*x (i,j >= 1) in increasing order; the sequence of i's is the signature of x; the sequence of j's is the signature of 1/x.
The plot looks surprisingly regular. - T. D. Noe, Jul 23 2013
Where does this first differ from A133334? - R. J. Mathar, Jul 30 2013

References

  • Clark Kimberling, Fractal Sequences and Interspersions, Ars Combinatoria 45 (1997) 157-168.

Crossrefs

Programs

  • Mathematica
    x = FindRoot[LogIntegral[x] == 0, {x, 2}, WorkingPrecision -> 105][[1,2]]; Take[Transpose[Sort[Flatten[Table[{i + j*x, i}, {i, 30}, {j, 20}], 1], #1[[1]] < #2[[1]] &]][[2]], 100] (* T. D. Noe, Jul 23 2013 *)
Showing 1-2 of 2 results.