A197325 Floor((5n+1/n)^n).
6, 110, 3605, 168151, 10162550, 753640010, 66200225626, 6719243243859, 773662803646264, 99627047203913814, 14186632841753756405, 2213340465298424454702, 375449162169269152689331, 68797650004483898373052060, 13542753444466024362689788808
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..300
Crossrefs
Cf. A014052.
Programs
-
Magma
[Floor((5*n+1/n)^n): n in [1..20]];
-
Mathematica
Floor[Table[(5n+1/n)^n,{n,20}]] (* Harvey P. Dale, Sep 15 2023 *)
-
PARI
a(n)=floor((5*n+1/n)^n) \\ Charles R Greathouse IV, Dec 27 2011