A319795 a(n) = n^(n+1)/(n-1)^n for n>1, rounded to nearest integer.
8, 10, 13, 15, 18, 21, 23, 26, 29, 31, 34, 37, 40, 42, 45, 48, 50, 53, 56, 59, 61, 64, 67, 69, 72, 75, 78, 80, 83, 86, 88, 91, 94, 97, 99, 102, 105, 107, 110, 113, 116, 118, 121, 124, 126, 129, 132, 135, 137, 140, 143, 145, 148, 151, 154, 156, 159, 162, 164
Offset: 2
Programs
-
Maple
seq(round(n^(n+1)/(n-1)^n),n=1..100); # Muniru A Asiru, Sep 28 2018
-
PARI
for(n=2,30,print1(round(n^(n+1)/(n-1)^n),","))