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.

A337922 Numbers k such that when the first digit of k is shifted to the end the result is 3*k/2.

Original entry on oeis.org

1176470588235294, 2352941176470588, 3529411764705882, 4705882352941176, 5882352941176470, 11764705882352941176470588235294, 23529411764705882352941176470588, 35294117647058823529411764705882, 47058823529411764705882352941176, 58823529411764705882352941176470
Offset: 1

Views

Author

Amiram Eldar, Jan 29 2021

Keywords

Comments

The problem of finding the least number in this sequence was suggested by the Polish-British mathematician and historian Jacob Bronowski (1908-1974).
Anderson (1988) credited the problem to the British mathematician John Edensor Littlewood (1885-1977). The solution to the problem was given in 1955 by the British mathematician Dudley Ernest Littlewood (1903-1979), a student of J. E. Littlewood (but they were not related).

Examples

			1176470588235294 is a term since 1764705882352941 = 3*1176470588235294/2.
		

References

  • Jacob Bronowski, New Statesman and Nation, Vol. 39, Dec. 24, 1949, p. 761.
  • Dan Pedoe, The Gentle Art of Mathematics, Macmillan, 1960, p. 11.

Crossrefs

Programs

  • Mathematica
    concat[n_, m_] := NestList[FromDigits[Join[{#}, IntegerDigits[n]]] &, n, m]; s = Range[2, 10, 2]*(10^16 - 1)/17; Union @ Flatten[concat[#, 2] & /@ s]

Formula

The decimal digits of the first 5 terms are the periodic parts of the decimal expansions of 2/17, 4/17, 6/17, 8/17 and 10/17. The next terms are all the concatenations of each of these terms with itself an integral number of times (Anderson, 1988).