cp's OEIS Frontend

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.

A331428 Divide each side of a triangle into 2*n-1 (n>=1) equal parts and trace the corresponding cevians, i.e., join every point, except for the first and last ones, with the opposite vertex. a(n) is the number of points at which three cevians meet.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 42, 0, 0, 0, 0, 12, 0, 0, 0, 48, 6, 0, 0, 0, 0, 6, 12, 0, 0, 0, 6, 0, 0, 12, 0, 0, 0, 24, 0, 0, 90, 0, 0, 0, 0, 0, 12, 12, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 24, 0, 0, 0, 0, 12, 0, 0, 0, 12, 0
Offset: 1

Views

Author

César Eliud Lozada, Jan 16 2020

Keywords

Comments

A bisection of A331423.

Crossrefs

Programs

  • Mathematica
    CevIntersections[n_] := Length[Solve[(n - i)*(n - j)*(n - k) - i*j*k == 0 && 0 < i < n &&  0 < j < n && 0 < k < n, {i, j, k}, Integers]];
    Map[CevIntersections[#] &, Range[1,51,2]]

Formula

a(n) = A331423(2*n-1).