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.

A004933 a(n) = floor(n*phi^18), where phi is the golden ratio, A001622.

Original entry on oeis.org

0, 5777, 11555, 17333, 23111, 28889, 34667, 40445, 46223, 52001, 57779, 63557, 69335, 75113, 80891, 86669, 92447, 98225, 104003, 109781, 115559, 121337, 127115, 132893, 138671, 144449, 150227
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Floor((2889+1292*Sqrt(5))*n): n in [0..60]]; // G. C. Greubel, Sep 11 2023
    
  • Mathematica
    With[{p=GoldenRatio^18},Floor[p*Range[0,30]]] (* Harvey P. Dale, Mar 06 2022 *)
  • SageMath
    [floor(golden_ratio^(18)*n) for n in range(61)] # G. C. Greubel, Sep 11 2023