login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A258384 a(n) = n^(n-1) * (n+1)^n. 2
2, 18, 576, 40000, 4860000, 914838624, 246727835648, 90275517038592, 43046721000000000, 25937424601000000000, 19271723592631858495488, 17310672267004940730236928, 18492034350245752657180811264, 23170856660867919150000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = n^(n-1) * (n+1)^n.
a(n) ~ e * n^(2n-1). - Charles R Greathouse IV, May 28 2015
EXAMPLE
a(3) = (3+1)^3 * 3^(3-1) = 4^3 * 3^2 = 64 * 9 = 576.
MATHEMATICA
Table[n^(n - 1)*(n + 1)^n, {n, 16}] (* Michael De Vlieger, May 28 2015 *)
PROG
(Sidef)
func a(n) {
(n+1)**n * n**(n-1);
};
1.to(Math.inf).each { |n|
say a(n);
};
(PARI) a(n)=n^(n-1)*(n+1)^n \\ Charles R Greathouse IV, May 28 2015
CROSSREFS
Sequence in context: A188202 A324308 A071352 * A296376 A013035 A350008
KEYWORD
easy,nonn
AUTHOR
Daniel Suteu, May 28 2015
EXTENSIONS
More terms from Michael De Vlieger, May 28 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)