OFFSET
1,3
COMMENTS
To evaluate a(n) consider only the neighbors of a(n) that are present in the isosceles triangle when a(n) should be a new term in the triangle.
Apart from the left border and the right border, the rest of the elements are 3's.
If every "3" is replaced with a "4", we have the sequence A278290.
a(n) is also the number of new penny-penny contacts when putting pennies in a triangular arrangement.
EXAMPLE
The sequence written as an isosceles triangle begins:
.
. 0;
. 1, 2;
. 1, 3, 2;
. 1, 3, 3, 2;
. 1, 3, 3, 3, 2;
. 1, 3, 3, 3, 3, 2;
. 1, 3, 3, 3, 3, 3, 2;
. 1, 3, 3, 3, 3, 3, 3, 2;
. 1, 3, 3, 3, 3, 3, 3, 3, 2;
. 1, 3, 3, 3, 3, 3, 3, 3, 3, 2;
...
MATHEMATICA
Table[Boole[n > 1] (Prepend[Reverse@ Rest@ #, First@ #] &@ Range@ n /. k_ /; k > 3 -> 3), {n, 13}] // Flatten (* or *)
Table[Boole[n > 1] (Map[Mod[#, n] &, Range@ n] /. {k_ /; k > 1 -> 3, 0 -> 2}), {n, 13}] // Flatten (* Michael De Vlieger, Nov 23 2016 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Omar E. Pol, Nov 20 2016
STATUS
approved