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.

A275588 a(1) = 1; thereafter a(n) = (Sum_{k=1..n-1} a(k)) ^ Product_{k=1..n-1} a(k).

Original entry on oeis.org

1, 1, 2, 16, 429496729600000000000000000000000000000000
Offset: 1

Views

Author

Rick L. Shepherd, Aug 02 2016

Keywords

Comments

a(6) is roughly 10^(5.72199*10^44).

Examples

			a(4) = (a(1) + a(2) + a(3)) ^ (a(1)*a(2)*a(3)) = (1 + 1 + 2)^(1*1*2) = 4^2 = 16.
		

Crossrefs

Cf. A275587.

Programs

  • Mathematica
    a[1] = 1; a[n_] := a[n] = Sum[a[k], {k, n - 1}]^Product[a[k], {k, n - 1}]; Table[a[n], {n, 0, 5}] (* Michael De Vlieger, Aug 04 2016 *)
  • PARI
    a(n) = if(n==1, 1, if(n>1, sum(k=1, n - 1, a(k)) ^ prod(k=1, n - 1, a(k))))