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.

A214741 Least m>0 such that n-m divides L(n)+m, where L = A000201 (lower Wythoff sequence).

Original entry on oeis.org

1, 2, 2, 4, 1, 1, 3, 8, 8, 4, 11, 11, 2, 2, 15, 6, 17, 12, 7, 3, 3, 3, 22, 12, 9, 13, 27, 4, 4, 4, 31, 31, 33, 22, 34, 5, 5, 5, 14, 40, 41, 15, 21, 6, 6, 6, 23, 17, 24, 32, 18, 7, 7, 42, 54, 56, 57, 37, 59, 8, 8, 22, 63, 31, 23, 32, 66, 9, 9, 34, 25, 72, 73, 26, 10, 10, 10
Offset: 2

Views

Author

Clark Kimberling, Jul 28 2012

Keywords

Examples

			Write x#y if x|y is false; then 7#13, 6#14, 5|15, so a(8) = 3.
		

Crossrefs

Cf. A214742.

Programs

  • Mathematica
    r=GoldenRatio;
    Table[m = 1; While[! Divisible[Floor[n*r]+m, n - m], m++]; m, {n, 2, 100}]