Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A175771
a(n) = ((n^2 + 1)^n - 1)/n^3.
1
1, 3, 37, 1305, 95051, 11878363, 2277696793, 622353150177, 229930796172439, 110462212541120451, 66954547910007962117, 49988751334503886046233, 45082285083777592171142467, 48321795074001873489007405947
OFFSET
1,2
COMMENTS
If we consider the general case ((n^(p-1) + 1)^n - 1)/n^p, we obtain this sequence for p=3, the sequence A060073 for p = 2, and the sequence A000051 for n = 2 and p = 2,3,...
LINKS
EXAMPLE
a(3) = ((3^2 + 1)^3 - 1)/3^3 = 999/27 = 37.
MAPLE
seq(((n^2 + 1)^n - 1)/n^3, n=1..10) ;
MATHEMATICA
Table[((n^2 + 1)^n - 1)/n^3, {n, 1, 20}] (* G. C. Greubel, Nov 11 2018 *)
PROG
(Magma) [((n^2 + 1)^n - 1)/n^3 : n in [1..20]]; // Vincenzo Librandi, Sep 01 2011
(PARI) vector(20, n, ((n^2 + 1)^n - 1)/n^3) \\ G. C. Greubel, Nov 11 2018
CROSSREFS
Sequence in context: A128083 A270751 A270584 * A368775 A220628 A261594
KEYWORD
nonn,easy
AUTHOR
Michel Lagneau, Sep 01 2010
STATUS
approved