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.

A231830 a(0) = 1; for n > 0, a(n) = 1 + 4*Product_{i=1..n-1} a(i)^2.

Original entry on oeis.org

1, 5, 101, 1020101, 1061522231810040101, 1196154511175776540960913502483611007728163340227060101
Offset: 0

Views

Author

Michel Marcus, Nov 14 2013

Keywords

Comments

Sequence designed to show that there are an infinity of primes congruent to 1 modulo 4 (A002144). Terms are not necessarily prime. Their smallest prime factors from A002144 are: 5, 101, 1020101, 53, 686743037.
Next term is too large to include.
From Max Alekseyev, Apr 21 2023: (Start)
Similarly to Sylvester's sequence (A000058), it is unknown if all terms are squarefree.
Primes dividing terms of this sequence are listed in A362252. Since terms are pairwise coprime, for each n prime A362252(n) divides exactly one term, whose index is A362253(n). That is, A362252(n) divides a(A362253(n)). (End)

Crossrefs

Programs

  • PARI
    lista(nn) = {a = vector(nn); a[1] = 5; for (n=2, nn, a[n] = 4*prod(i=1, n-1, a[i]^2) + 1;); a;}

Formula

For n > 1, a(n) = (a(n-1) - 1) * a(n-1)^2 + 1. - Max Alekseyev, Mar 25 2023

Extensions

a(0)=1 prepended by Max Alekseyev, Mar 25 2023