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.

Showing 1-1 of 1 results.

A381327 a(n) is the number of nonnegative integers that can be represented by n segments in the Cistercian numeral system.

Original entry on oeis.org

1, 24, 214, 910, 2099, 2858, 2415, 1190, 289
Offset: 1

Views

Author

Stefano Spezia, Feb 20 2025

Keywords

Comments

The sequence is finite because the numeral system of Cistercian monks allows us to represent the numbers from 0 to 9999.

Crossrefs

Cf. A341737.

Programs

  • Mathematica
    SN:={"0"->1, "1"->2, "2"->2, "3"->2, "4"->2, "5"->3, "6"->2, "7"->3, "8"->3, "9"->4}; OI:={11, 15, 17, 19, 22, 28, 29, 51, 55, 57, 59, 71, 75, 77, 79, 82, 88, 89, 91, 92, 95, 97, 98, 99}; a[k_]:=Count[Table[(Characters[IntegerString[Floor[n/100]]]/. SN//Total)-Length[Characters[IntegerString[Floor[n/100]]]]+1-If[MemberQ[OI, Floor[n/100]], 1, 0]-Boole[Floor[n/100]==99]+(Characters[IntegerString[Mod[n, 100]]]/. SN//Total)-Length[Characters[IntegerString[Mod[n, 100]]]]+1-If[MemberQ[OI, Mod[n, 100]], 1, 0]-Boole[Mod[n, 100]==99]-1, {n, 0, 9999}],k]; Array[a,9]

Formula

Sum_{k=1..9} a(k) = 10^4.
Showing 1-1 of 1 results.