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!)
A371353 Irregular triangular array: row n shows the positions of fractions having denominator n in the array defined in A371280. 1
1, 2, 5, 3, 4, 2, 8, 17, 10, 6, 7, 15, 5, 2, 3, 32, 63, 38, 44, 23, 25, 30 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Every prime occurs exactly once, and every composite occurs infinitely many times.
LINKS
EXAMPLE
First seven rows:
1
2
5 3
4 2 8
17 19 6 7
15 5 2 3 32
63 38 44 23 25 30
In the array defined in A371280, the fractions 1/6, 2/6, 3/6, 4/6, 5/6 occur in positions 15, 5, 2, 3, 32, this being row 5 of the present array.
MATHEMATICA
x = {1};
(* In the remarks below, U(n) = ordered union of generations g(1), g(2), ...g(n) *)
x = {1};
x = DeleteDuplicates[Join[x, Map[x[[#[[1]]]]/(1 + x[[#[[2]]]]) &, Tuples[Range[Length[x]], {2}]]]] (* U(2) *)
x = DeleteDuplicates[Join[x, Map[x[[#[[1]]]]/(1 + x[[#[[2]]]]) &, Tuples[Range[Length[x]], {2}]]]] (* U(3) *)
x = DeleteDuplicates[Join[x, Map[x[[#[[1]]]]/(1 + x[[#[[2]]]]) &, Tuples[Range[Length[x]], {2}]]]] (* U(4) *)
v = Denominator[x]
Column[Table[Flatten[Table[Position[x, j/k], {j, 1, k - 1}]], {k, 1, 7}]]
CROSSREFS
Cf. 371280.
Sequence in context: A359684 A030660 A253720 * A372388 A309735 A275726
KEYWORD
nonn,tabf,frac,more
AUTHOR
Clark Kimberling, Mar 19 2024
STATUS
approved

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 July 11 23:20 EDT 2024. Contains 374237 sequences. (Running on oeis4.)