login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A099407
Number of points of self-intersection of the path of a billiard ball traveling at a 45-degree angle on a prime(n) X prime(n+1) billiard table. Also equal to 1/2 the number of the lattice points lying within a prime(n) X prime(n+1) rectangle.
3
1, 4, 12, 30, 60, 96, 144, 198, 308, 420, 540, 720, 840, 966, 1196, 1508, 1740, 1980, 2310, 2520, 2808, 3198, 3608, 4224, 4800, 5100, 5406, 5724, 6048, 7056, 8190, 8840, 9384, 10212, 11100, 11700, 12636, 13446, 14276, 15308, 16020, 17100, 18240, 18816
OFFSET
1,2
LINKS
FORMULA
a(n) = (prime(n) - 1)*(prime(n+1) - 1)/2.
EXAMPLE
a(2) = 4. Since prime(2) is 3 and prime(2+1) is 5, we are playing on a 3x5 billiard table. A ball struck from one corner will cross its own path 4 times before it strikes another corner to return along its own path.
MATHEMATICA
list = {}; For[i = 1, i < 100, i++, AppendTo[list, (Prime[i] - 1)(Prime[i + 1] - 1)/2]]; list
((First[#]-1)(Last[#]-1))/2&/@Partition[Prime[Range[50]], 2, 1] (* Harvey P. Dale, Nov 13 2013 *)
CROSSREFS
Sequence in context: A061726 A067706 A008261 * A011938 A047177 A048077
KEYWORD
nonn
AUTHOR
Matthew Howells (mathmatt(AT)gmail.com), Nov 17 2004
STATUS
approved