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.

A035340 6th column of Wythoff array.

Original entry on oeis.org

13, 47, 68, 102, 136, 157, 191, 212, 246, 280, 301, 335, 369, 390, 424, 445, 479, 513, 534, 568, 589, 623, 657, 678, 712, 746, 767, 801, 822, 856, 890, 911, 945, 979, 1000, 1034, 1055, 1089, 1123, 1144, 1178, 1199, 1233, 1267, 1288, 1322, 1356, 1377, 1411, 1432
Offset: 0

Views

Author

Keywords

Comments

The asymptotic density of this sequence is 1/phi^7 = A094214^7 = 0.03444185... . - Amiram Eldar, Mar 24 2025

Crossrefs

Column k of A035513: A003622 (k=1), A035336 (k=2), A035337 (k=3), A035338 (k=4), A035339 (k=5), this sequence (k=6).
Cf. A094214.

Programs

  • Maple
    t:= (1+sqrt(5))/2: [ seq(13*floor((n+1)*t)+8*n,n=0..80) ];
  • Mathematica
    a[n_] := 13 * Floor[n * GoldenRatio] + 8*(n-1); Array[a, 100] (* Amiram Eldar, Mar 24 2025 *)