login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A318164
a(n) = A000225(n)^A000217(n-1), n > 0.
1
1, 3, 343, 11390625, 819628286980801, 977480813971145474830595007, 151313661355466579537756144585602921111718527, 24161564501550368558430041444810830996032029256261885166168212890625
OFFSET
1,2
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).
LINKS
FORMULA
a(n) = (2^n - 1)^(n*(n - 1)/2), n > 0.
EXAMPLE
For n = 3, a(3) = 7^3 = 343.
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 *)
PROG
(GAP) List([1..8], n->(2^n-1)^(n*(n-1)/2));
(PARI) a(n) = (2^n-1)^(n*(n-1)/2); \\ Michel Marcus, Aug 21 2018
(Magma) SetDefaultRealField(RealField(100)); [Round((2^n-1)^(n*(n-1)/2)): n in [1..8]]; // G. C. Greubel, Oct 19 2018
CROSSREFS
Sequence in context: A045645 A245190 A005335 * A249799 A234607 A057121
KEYWORD
nonn
AUTHOR
Muniru A Asiru, Aug 19 2018
STATUS
approved