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.

A004921 a(n) = floor(n*phi^6), phi = golden ratio, A001622.

Original entry on oeis.org

0, 17, 35, 53, 71, 89, 107, 125, 143, 161, 179, 197, 215, 233, 251, 269, 287, 305, 322, 340, 358, 376, 394, 412, 430, 448, 466, 484, 502, 520, 538, 556, 574, 592, 610, 628, 645, 663, 681, 699, 717, 735, 753, 771
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Floor((9+4*Sqrt(5))*n): n in [0..50]]; // G. C. Greubel, Aug 22 2023
    
  • Mathematica
    Floor[GoldenRatio^6*Range[0, 50]] (* G. C. Greubel, Aug 22 2023 *)
  • SageMath
    [floor((9+4*sqrt(5))*n) for n in range(51)] # G. C. Greubel, Aug 22 2023

Formula

From G. C. Greubel, Aug 22 2023: (Start)
a(n) = floor((9 + 4*sqrt(5))*n).
a(n) = floor((A098317)^2*n). (End)