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!)
A058895 a(n) = n^4 - n. 13
0, 0, 14, 78, 252, 620, 1290, 2394, 4088, 6552, 9990, 14630, 20724, 28548, 38402, 50610, 65520, 83504, 104958, 130302, 159980, 194460, 234234, 279818, 331752, 390600, 456950, 531414, 614628, 707252, 809970, 923490, 1048544, 1185888, 1336302, 1500590, 1679580 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
a(n) is the number of ways to assign 4 different students to n different dorm rooms, each of which can hold at most 3 students. In other words, a(n) is the number of functions f:[4]->[n] with the size of the pre-image set of each element of the codomain at most 3. - Dennis P. Walsh, Mar 21 2013
a(n) are the values of m that yield integer solutions to this family of equations: x = sqrt(m + sqrt(x)), which may also be viewed as an infinitely recursive radical. The real solutions for x at each m = a(n) is n^2, except at n = 1 (m = 0) where x = 0 or 1 is a solution. - Richard R. Forberg, Oct 15 2014
LINKS
FORMULA
a(n) = n*(n-1)*(n^2+n+1) = A000583(n) - n = A002061(n+1) * A002378(n-1) = (n-1) * A027444(n) = -n * A024001.
a(n) = 2*A027482(n). - Zerinvary Lajos, Jan 28 2008
a(n) = floor(n^7/(n^3+1)). - Gary Detlefs, Feb 11 2010
a(n)^3 = (a(n)/n)^4 + (a(n)/n)^3. - Vincenzo Librandi, Feb 23 2012
a(n)^3 +A068601(n)^3 +A033562(n)^3 = A185065(n)^3, for n>0. - Vincenzo Librandi, Mar 13 2012
G.f.: 2*x^2*(7+4*x+x^2)/(1-x)^5. - Colin Barker, Apr 23 2012
a(n) = 14*C(n,2) + 36*C(n,3) + 24*C(n,4). - Dennis P. Walsh, Mar 21 2013
Sum_{n>=2} (-1)^n/a(n) = (Pi/3)*sech(Pi*sqrt(3)/2) + 4*log(2)/3 - 1 = 0.06147271494... . - Amiram Eldar, Jul 04 2020
Sum_{n>=2) 1/a(n) = A339605. - R. J. Mathar, Jan 08 2021
E.g.f.: exp(x)*x^2*(7 + 6*x + x^2). - Stefano Spezia, Jul 09 2021
MAPLE
seq(n*(n^3-1), n=0..25) ; # R. J. Mathar, Dec 10 2015
MATHEMATICA
Table[n^4 - n, {n, 0, 40}] (* Vladimir Joseph Stephan Orlovsky, Feb 20 2012 *)
PROG
(PARI) { for (n = 0, 2000, write("b058895.txt", n, " ", n^4-n); ) } \\ Harry J. Smith, Jun 23 2009
(Magma) [n^4-n: n in [0..40]]; // Vincenzo Librandi, Feb 23 2012
(Sage) (2*x^2*(7+4*x+x^2)/(1-x)^5).series(x, 37).coefficients(x, sparse=False) # Stefano Spezia, Jul 09 2021
CROSSREFS
Sequence in context: A335757 A044201 A044582 * A166842 A364770 A370960
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Jan 08 2001
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)