A051566 Erroneous version of A051567.
0, 5, 0, 2, 138, 47, 1, 12490
Offset: 3
Keywords
References
- M. Gardner, The Last Recreations, Springer, 1997, p. 282.
- M. Gardner, The Colossal Book of Mathematics, 2001, p. 209.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
A051755:=n->`if`(n=2, 3, 2*n-2); seq(A051755(n), n=2..50); # Wesley Ivan Hurt, Feb 09 2014
CoefficientList[Series[(z^2 - 2*z + 3)/(z - 1)^2, {z, 0, 100}], z] (* and *) Join[{3}, Table[2*n, {n, 2, 200}]] (* Vladimir Joseph Stephan Orlovsky, Jul 10 2011 *) LinearRecurrence[{2,-1},{3,4,6},70] (* Harvey P. Dale, Aug 29 2017 *)
Vec(x^2*(x^2-2*x+3)/(x-1)^2 + O(x^100)) \\ Colin Barker, Nov 08 2014
Examples from _R. J. Mathar_, May 01 2006: (Start) ==== n = 3 6 queens: Q Q Q Q - - Q - Q 6 queens: Q Q Q - - - Q Q Q ==== n = 4 8 queens: Q Q Q Q Q - - - Q - - - Q - - Q 8 queens: Q Q Q Q Q - - - - - Q - Q - - Q 8 queens: Q Q Q Q - - - - - - - - Q Q Q Q 8 queens: Q Q - Q - Q - - - - Q - Q - Q Q ==== n = 7 16 queens: Q Q Q - Q - Q - - - - - - Q - - - Q - - - Q - - - - - Q - - - Q - - - Q - - - - - - Q - Q - Q Q Q 16 queens: Q Q Q - - Q Q - - - Q - - - - - - - - - Q Q - - - - - Q Q - - - - - - - - - Q - - - Q Q - - Q Q Q (End)
Comments