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.

User: Antoine de Saint Germain

Antoine de Saint Germain's wiki page.

Antoine de Saint Germain has authored 1 sequences.

A379686 a(n) = (a(n-1)+1)*(a(n-2)+1)*(a(n-3)+1)*(a(n-4)+1)/a(n-5), with a(1)=1, a(2)=2, a(3)=6, a(4)=42, a(5)=1806.

Original entry on oeis.org

1, 2, 6, 42, 1806, 1631721, 443752508927, 9376966151402427009536, 292117920945338351144537464770855449375232, 1098221126335915194898500730834145753769059346709551018699709189743396297017856
Offset: 1

Author

Keywords

Comments

Sequence consists of (positive) integers.
Values of a unitary Y-frieze pattern associated to the linearly oriented quiver K5 (i.e., the quiver whose underlying graph is the complete graph on the vertices {1,2,3,4,5}, oriented such that i -> j whenever i < j).

Crossrefs

Programs

  • GAP
    x := [1,2,6,42,1806]; for n in [1..15] do x[n+5] := (x[n+4]+1)*(x[n+3]+1)*(x[n+2]+1)*(x[n+1]+1)/x[n]; od;
    
  • Magma
    I:=[1, 2, 6, 42,1806]; [n le 5 select I[n] else (Self(n-1)+1)*(Self(n-2)+1)*(Self(n-3)+1)*(Self(n-4)+1)/Self(n-5): n in [1..15]]; // Vincenzo Librandi, Dec 31 2024
  • Mathematica
    a[1]=1;a[2]=2;a[3]=6;a[4]=42;a[5]=1806;a[n_]:=(a[n-1]+1)*(a[n-2]+1)*(a[n-3]+1)*(a[n-4]+1)/a[n-5];Table[a[n],{n,10}] (* James C. McMahon, Jan 08 2025 *)

Formula

a(n) = b(n+1) * b(n+2) * b(n+3) * b(n+4) where b is A072713. - Andrey Zabolotskiy, Jan 08 2025