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.

A351916 a(1) = a(2) = 1; for n >= 2, a(n+1) = (a(n)^7 + 1)/a(n-1).

Original entry on oeis.org

1, 1, 2, 129, 297233651245505, 1588898389043626055434220300433167237829218942966252641093888571632886068535351219199489258571766594
Offset: 1

Views

Author

Robert Dougherty-Bliss, Feb 25 2022

Keywords

Comments

a(7) has 680 digits.

Crossrefs

Programs

  • Maple
    a:=proc(n) option remember: if n <= 2 then 1: else (a(n-1)^7+1)/a(n-2): fi: end: