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.

Showing 1-1 of 1 results.

A168495 a(n) = 3^floor(n^2/3).

Original entry on oeis.org

1, 1, 3, 27, 243, 6561, 531441, 43046721, 10460353203, 7625597484987, 5559060566555523, 12157665459056928801, 79766443076872509863361, 523347633027360537213511521, 10301051460877537453973547267843
Offset: 0

Views

Author

Paul Barry, Nov 27 2009

Keywords

Comments

Hankel transform of A168494. Trivial Somos-4 sequence linked to elliptic curve y^2=1-10x+25x^2-12x^3.

Programs

  • Magma
    [3^Floor(n^2/3): n in [0..15]]; // Vincenzo Librandi, Sep 15 2011
    
  • Mathematica
    Table[3^Floor[n^2/3], {n,0,20}] (* G. C. Greubel, Sep 18 2018 *)
  • PARI
    vector(20, n, n--; 3^floor(n^2/3)) \\ G. C. Greubel, Sep 18 2018

Formula

a(n) = 9*a(n-1)*a(n-3)/a(n-4).
Showing 1-1 of 1 results.