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.

A318164 a(n) = A000225(n)^A000217(n-1), n > 0.

Original entry on oeis.org

1, 3, 343, 11390625, 819628286980801, 977480813971145474830595007, 151313661355466579537756144585602921111718527, 24161564501550368558430041444810830996032029256261885166168212890625
Offset: 1

Views

Author

Muniru A Asiru, Aug 19 2018

Keywords

Examples

			For n = 3, a(3) = 7^3 = 343.
		

References

  • Bijan Davvaz, Polygroup theory and related systems, World Scientific Publishing Co. Plc. Ltd., New Jersey, (2013), p. 157 (for a(3) = 7^3 = 343).

Crossrefs

Programs

  • GAP
    List([1..8],n->(2^n-1)^(n*(n-1)/2));
    
  • Magma
    SetDefaultRealField(RealField(100)); [Round((2^n-1)^(n*(n-1)/2)): n in [1..8]]; // G. C. Greubel, Oct 19 2018
  • Maple
    a:=n->(2^n-1)^(n*(n-1)/2): seq(a(n),n=1..8);
  • Mathematica
    a[n_] := (2^n-1)^(n*(n-1)/2); Array[a, 8] (* Stefano Spezia, Sep 02 2018 *)
  • PARI
    a(n) = (2^n-1)^(n*(n-1)/2); \\ Michel Marcus, Aug 21 2018
    

Formula

a(n) = (2^n - 1)^(n*(n - 1)/2), n > 0.