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.

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

Original entry on oeis.org

0, 1364, 2728, 4092, 5456, 6820, 8184, 9548, 10912, 12276, 13640, 15004, 16368, 17732, 19096, 20460, 21824, 23188, 24552, 25916, 27280, 28644, 30008, 31372, 32736, 34100, 35464, 36828, 38192
Offset: 0

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [Floor((682+305*Sqrt(5))*n): n in [0..60]]; // G. C. Greubel, Sep 05 2023
    
  • Mathematica
    Floor[GoldenRatio^(15)*Range[0, 60]] (* G. C. Greubel, Sep 05 2023 *)
  • SageMath
    [floor(golden_ratio^(15)*n) for n in range(61)] # G. C. Greubel, Sep 05 2023