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.

A110386 a(1) = 1, a(2) = a(1) + 1, a(3) = a(2)^2 + a(2) + 1; a(n + 1) = a(n)^n + a(n)^(n-1) + ... + a(n)^2 + a(n) + 1 = {a(n)^(n + 1)-1}/{a(n) - 1}.

Original entry on oeis.org

1, 2, 7, 400, 25664160401, 11133592066966265230223312802560009320400030085606006
Offset: 1

Views

Author

Amarnath Murthy, Jul 26 2005

Keywords

Comments

The next term is too large to include.

Examples

			a(3) = 2^2 + 2 + 1 = 7.
		

Programs

  • Maple
    a[1]:=1: for n from 1 to 7 do a[n+1]:=sum(a[n]^j,j=0..n) od: seq(a[n],n=1..7); # Emeric Deutsch, Jul 31 2005

Extensions

More terms from Emeric Deutsch, Jul 31 2005