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!)
A160843 Number of lines through at least 2 points of a 3 X n grid of points. 2

%I #23 Sep 08 2022 08:45:45

%S 0,1,11,20,35,52,75,100,131,164,203,244,291,340,395,452,515,580,651,

%T 724,803,884,971,1060,1155,1252,1355,1460,1571,1684,1803,1924,2051,

%U 2180,2315,2452,2595,2740,2891,3044,3203,3364,3531,3700,3875,4052,4235,4420

%N Number of lines through at least 2 points of a 3 X n grid of points.

%H Vincenzo Librandi, <a href="/A160843/b160843.txt">Table of n, a(n) for n = 0..10000</a>

%H S. Mustonen, <a href="http://www.survo.fi/papers/PointsInGrid.pdf">On lines and their intersection points in a rectangular grid of points</a>

%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (2,0,-2,1).

%F a(n) = 2*n^2 + 3 - n mod 2.

%F a(n) = 2*a(n-1) - 2*a(n-3) + a(n-4) for n > 5. - _Colin Barker_, May 24 2015

%F G.f.: -x*(3*x^4 - 3*x^3 - 2*x^2 + 9*x + 1) / ((x-1)^3*(x+1)). - _Colin Barker_, May 24 2015

%t a[n_]:=If[n<2,n,2*n^2+3-Mod[n,2]] Table[a[n],{n,0,47}]

%t Join[{0, 1}, LinearRecurrence[{2, 0, -2, 1}, {11, 20, 35, 52}, 20]] (* _G. C. Greubel_, Apr 30 2018 *)

%o (PARI) Vec(-x*(3*x^4-3*x^3-2*x^2+9*x+1)/((x-1)^3*(x+1)) + O(x^100)) \\ _Colin Barker_, May 24 2015

%o (Magma) [0, 1] cat [2*n^2 + 3 - n mod 2: n in [2..100]]; / _G. C. Greubel_, Apr 30 2018

%Y 3rd row/column of A107348, A295707.

%K nonn,easy

%O 0,3

%A _Seppo Mustonen_, May 28 2009

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 19 14:04 EDT 2024. Contains 371792 sequences. (Running on oeis4.)