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.

A004941 a(n) = round(n*phi^6), where phi is the golden ratio, A001622.

Original entry on oeis.org

0, 18, 36, 54, 72, 90, 108, 126, 144, 161, 179, 197, 215, 233, 251, 269, 287, 305, 323, 341, 359, 377, 395, 413, 431, 449, 467, 484, 502, 520, 538, 556, 574, 592, 610, 628, 646, 664, 682, 700, 718, 736, 754, 772
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Round(n*(9+4*Sqrt(5))): n in [0..80]]; // G. C. Greubel, Jan 23 2024
    
  • Mathematica
    Round[Range[0,50]GoldenRatio^6] (* Harvey P. Dale, Jul 21 2020 *)
  • SageMath
    [round(golden_ratio^6*n) for n in range(81)] # G. C. Greubel, Jan 23 2024