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.

A329488 a(n) = A001350(n)^4.

Original entry on oeis.org

1, 1, 256, 625, 14641, 65536, 707281, 4100625, 33362176, 214358881, 1568239201, 10485760000, 73680216481, 500246412961, 3461445366016, 23639287100625, 162614549665681, 1113034787454976, 7639424429247601, 52333711181640625
Offset: 1

Views

Author

N. J. A. Sloane, Nov 15 2019

Keywords

Crossrefs

Cf. A001350.

Programs

  • PARI
    a001350(n) = fibonacci(n+1) + fibonacci(n-1) - 1 - (-1)^n
    a(n) = a001350(n)^4 \\ Felix Fröhlich, Nov 24 2019