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”).

A075364
a(n) = floor( geometric mean of n-th row of A075363).
4
1, 2, 9, 32, 125, 529, 2401, 11585, 59049, 316227, 1771561, 10343751, 62748517, 394421215, 2562890625, 17179869184, 118587876497, 841567195983, 6131066257801, 45794672179195, 350277500542221, 2740695769692949
OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..500 (terms 1..100 from Vincenzo Librandi)
FORMULA
a(n) = floor(n^((n+1)/2)).
MATHEMATICA
Table[Floor[n^((n + 1)/2)], {n, 1, 50}] (* G. C. Greubel, Dec 30 2017 *)
PROG
(Magma) [Floor(n^((n+1)/2)): n in [1..30]]; // Vincenzo Librandi, May 07 2011
(PARI) for(n=1, 30, print1(floor(n^((n+1)/2)), ", ")) \\ G. C. Greubel, Dec 30 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 20 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 12 2003
STATUS
approved