A308999
Irregular triangle T(n,k) read by rows: Lexicographically smallest marks on "perfect rulers" (as defined in A103294) of length n.
Original entry on oeis.org
0, 0, 1, 0, 1, 2, 0, 1, 3, 0, 1, 2, 4, 0, 1, 2, 5, 0, 1, 4, 6, 0, 1, 2, 3, 7, 0, 1, 2, 5, 8, 0, 1, 2, 6, 9, 0, 1, 2, 3, 6, 10, 0, 1, 2, 3, 7, 11, 0, 1, 2, 3, 8, 12, 0, 1, 2, 6, 10, 13, 0, 1, 2, 3, 4, 9, 14, 0, 1, 2, 3, 4, 10, 15, 0, 1, 2, 3, 8, 12, 16
Offset: 0
Triangle starts:
0;
0, 1;
0, 1, 2;
0, 1, 3;
0, 1, 2, 4;
0, 1, 2, 5;
0, 1, 4, 6;
0, 1, 2, 3, 7;
0, 1, 2, 5, 8;
0, 1, 2, 6, 9;
0, 1, 2, 3, 6, 10;
0, 1, 2, 3, 7, 11;
0, 1, 2, 3, 8, 12;
0, 1, 2, 6, 10, 13;
0, 1, 2, 3, 4, 9, 14;
0, 1, 2, 3, 4, 10, 15;
0, 1, 2, 3, 8, 12, 16;
-
def Partsum(T) :
return [add([T[j] for j in range(i)]) for i in (0..len(T))]
def Ruler(L, S) :
return map(Partsum, Compositions(L, length=S))
def isComplete(R) :
S = Set([])
L = len(R)-1
for i in range(L,0,-1) :
for j in (1..i) :
S = S.union(Set([R[i]-R[i-j]]))
return len(S) == R[L]
def CompleteRuler(L, S) :
return list(filter(isComplete, Ruler(L, S)))
def PerfectRulers(L) :
for i in (0..L) :
R = CompleteRuler(L, i)
if R: return R
return []
def A308999list(L):
for n in (0..L):
print(PerfectRulers(n)[-1])
A308999list(16) # Peter Luschny, Aug 21 2019
A103295
Number of complete rulers with length n.
Original entry on oeis.org
1, 1, 1, 3, 4, 9, 17, 33, 63, 128, 248, 495, 988, 1969, 3911, 7857, 15635, 31304, 62732, 125501, 250793, 503203, 1006339, 2014992, 4035985, 8080448, 16169267, 32397761, 64826967, 129774838, 259822143, 520063531, 1040616486, 2083345793, 4168640894, 8342197304, 16694070805, 33404706520, 66832674546, 133736345590
Offset: 0
a(4) = 4 counts the complete rulers with length 4, {[0,2,3,4],[0,1,3,4],[0,1,2,4],[0,1,2,3,4]}.
- Fausto A. C. Cariboni, Table of n, a(n) for n = 0..49
- Scott Harvey-Arnold, Steven J. Miller, and Fei Peng, Distribution of missing differences in diffsets, arXiv:2001.08931 [math.CO], 2020.
- Peter Luschny, Perfect rulers
- Hugo Pfoertner, Count complete rulers of given length. FORTRAN program.
- Index entries for sequences related to perfect rulers.
- Gus Wiseman, Illustration of A103295.
-
Table[Length[Select[Join@@Permutations/@IntegerPartitions[n],SubsetQ[ReplaceList[#,{_,s__,_}:>Plus[s]],Range[n]]&]],{n,0,15}] (* Gus Wiseman, May 17 2019 *)
A103300
Number of perfect rulers with length n.
Original entry on oeis.org
1, 1, 1, 2, 3, 4, 2, 12, 8, 4, 38, 30, 14, 6, 130, 80, 32, 12, 500, 326, 150, 66, 18, 4, 944, 460, 166, 56, 12, 6, 2036, 890, 304, 120, 20, 10, 2, 2678, 974, 362, 100, 36, 4, 2, 4892, 2114, 684, 238, 68, 22, 4, 16318, 6350, 2286, 836, 330, 108, 24, 12, 31980, 12252
Offset: 0
a(5)=4 counts the perfect rulers with length 5, {[0,1,3,5],[0,2,4,5],[0,1,2,5],[0,3,4,5]}.
- Peter Luschny (0..123), Arch D. Robison (124..198) and Fabian Schwartau and Yannic Schröder (199..208), Table of n, a(n) for n = 0..208
- Peter Luschny, Perfect and Optimal Rulers.
- Ed Pegg, Sparse ruler data, Oct 20 2022.
- Arch D. Robison, Parallel Computation of Sparse Rulers, Jan 14 2014.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, MRLA search results and source code, Nov 6 2020.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Large Minimum Redundancy Linear Arrays: Systematic Search of Perfect and Optimal Rulers Exploiting Parallel Processing, IEEE Open Journal of Antennas and Propagation, 2 (2021), 79-85.
- Index entries for sequences related to perfect rulers.
Cf.
A004137 (Maximal number of edges in a graceful graph on n nodes).
A004137
Maximal number of edges in a graceful graph on n nodes.
Original entry on oeis.org
0, 1, 3, 6, 9, 13, 17, 23, 29, 36, 43, 50, 58, 68, 79, 90, 101, 112, 123, 138, 153, 168, 183, 198, 213, 232
Offset: 1
a(7)=17: Label the 7 nodes 0,1,8,11,13,15,17 and include all edges except those from 8 to 15, from 13 to 15, from 13 to 17 and from 15 to 17. {0,1,8,11,13,15,17} is a restricted difference basis w.r.t. 17.
a(21)=153 because there exists a complete ruler (i.e., one that can measure every distance between 1 and 153) with marks [0,1,2,3,7,14,21,28,43,58,73,88,103,118,126,134,142,150,151,152,153] and no complete ruler of greater length with the same number of marks can be found. This ruler is of the type described by B. Wichmann and it is conjectured by _Peter Luschny_ that it is impossible to improve upon Wichmann's construction for finding optimal rulers of bigger lengths.
- J.-C. Bermond, Graceful graphs, radio antennae and French windmills, pp. 18-37 of R. J. Wilson, editor, Graph Theory and Combinatorics. Pitman, London, 1978.
- R. K. Guy, Modular difference sets and error correcting codes. in: Unsolved Problems in Number Theory, 3rd ed. New York: Springer-Verlag, chapter C10, (2004), 181-183.
- J. C. P. Miller, Difference bases: Three problems in additive number theory, pp. 299-322 of A. O. L. Atkin and B. J. Birch, editors, Computers in Number Theory. Academic Press, NY, 1971.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- D. Beutner and H. Harborth, Graceful labelings of Nearly Complete Graphs, Results Math. 41 (2002) 34-39.
- G. S. Bloom and S. W. Golomb, Applications of numbered undirected graphs, Proc. IEEE 65 (1977), 562-570.
- G. S. Bloom and S. W. Golomb, Numbered complete graphs, unusual rulers, and assorted applications, Theory and Applications of Graphs, Lecture Notes in Math. 642, (1978), 53-65.
- L. Egidi and G. Manzini, Spaced seeds design using perfect rulers, Tech. Rep. CS Department Universita del Piemonte Orientale, June 2011.
- P. Erdős, A survey of problems in combinatorial number theory, Ann. Discrete Math. 6 (1980), 89-115.
- P. Erdős and R. Freud, On sums of a Sidon-sequence, J. Number Theory 38 (1991), 196-205.
- P. Erdős and P. Turán, On a problem of Sidon in additive number theory, and on some related problems, J. Lond. Math. Soc. 16 (1941), 212-215.
- J. Leech, On the representation of 1, 2, ..., n by differences, J. Lond. Math. Soc. 31 (1956), 160-169.
- S. Lou and Q. Yao, A Chebyshev's type of prime number theorem in a short interval II, Hardy-Ramanujan J. 15 (1992), 1-33.
- Peter Luschny, Perfect Rulers.
- Peter Luschny, Wichmann Rulers.
- Klaus Nagel, Evaluation of perfect rulers C program.
- O. Pikhurko, Dense edge-magic graphs and thin additive bases, Discrete Math. 306 (2006), 2097-2107.
- O. Pikhurko and T. Schoen, Integer Sets Having the Maximum Number of Distinct Differences, Integers: Electronic journal of combinatorial number theory 7 (2007).
- I. Redéi and A. Rényi, On the representation of integers 1, 2, ..., n by differences, Mat. Sbornik 24 (1949), 385-389 (Russian).
- Arch D. Robison, Parallel Computation of Sparse Rulers, Jan 14 2014.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, MRLA search results and source code, Nov 6 2020.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Large Minimum Redundancy Linear Arrays: Systematic Search of Perfect and Optimal Rulers Exploiting Parallel Processing, IEEE Open Journal of Antennas and Propagation, 2 (2021), 79-85.
- J. Singer, A theorem in finite projective geometry and some applications to number theory, Trans. Amer. Math. Soc. 43 (1938), 377-85.
- David Singmaster, David Fielker, N. J. A. Sloane, Correspondence, August 1979.
- M. Wald & N. J. A. Sloane, Correspondence and Attachment, 1987.
- Eric Weisstein's World of Mathematics, Graceful Graph.
- B. Wichmann, A note on restricted difference bases, J. Lond. Math. Soc. 38 (1963), 465-466.
- Al Zimmermann's Programming Contests, Graceful Graphs, September - December 2013.
A080060 is an erroneous version of the sequence, given in Bermond's paper. Cf.
A005488.
A289761 provides the conjectured continuation.
Miller's paper gives these lower bounds for the 8 terms from a(15) to a(22): 79, 90, 101, 112, 123, 138, 153, 168.
Using this program
Hugo Pfoertner found further evidence for the conjectured term a(21)=153, Feb 23 2005
Terms a(21) .. a(24) proved by exhaustive search by Arch D. Robison,
Hugo Pfoertner, Nov 01 2013
Term a(25) proved by exhaustive search by Arch D. Robison,
Peter Luschny, Jan 14 2014
Term a(26) proved by exhaustive search by Fabian Schwartau,
Yannic Schröder, Lars Wolf, Joerg Schoebel, Feb 22 2021
A289761
Maximum length of a perfect Wichmann ruler with n segments.
Original entry on oeis.org
3, 6, 9, 12, 15, 22, 29, 36, 43, 50, 57, 68, 79, 90, 101, 112, 123, 138, 153, 168, 183, 198, 213, 232, 251, 270, 289, 308, 327, 350, 373, 396, 419, 442, 465, 492, 519, 546, 573, 600, 627, 658, 689, 720, 751, 782, 813, 848, 883, 918, 953, 988, 1023, 1062, 1101, 1140, 1179, 1218, 1257, 1300, 1343, 1386, 1429
Offset: 2
A103298
Number of segments of a perfect ruler with length n.
Original entry on oeis.org
0, 1, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14
Offset: 0
a(11)=5 means that a perfect ruler with length 11 has 5 segments.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Table of n, a(n) for n = 0..244
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, MRLA search results and source code, Nov 6 2020.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Large Minimum Redundancy Linear Arrays: Systematic Search of Perfect and Optimal Rulers Exploiting Parallel Processing, IEEE Open Journal of Antennas and Propagation, 2 (2021), 79-85.
- Index entries for sequences related to perfect rulers.
A308766
Numbers k such that the minimal mark in a length k sparse ruler is round(sqrt(9 + 12*k)/2) + 1.
Original entry on oeis.org
51, 59, 69, 113, 124, 125, 135, 136, 139, 149, 150, 151, 164, 165, 166, 179, 180, 181, 195, 196, 199, 209, 210, 211
Offset: 1
A103296
Number of complete rulers with n segments.
Original entry on oeis.org
1, 1, 3, 10, 38, 175, 885, 5101, 32080, 219569, 1616882, 12747354, 106948772, 950494868
Offset: 0
a(2)=3 counts the complete rulers with 2 segments, {[0,1,2],[0,1,3],[0,2,3]}.
Cf.
A103301 (perfect rulers with n segments),
A103299 (optimal rulers with n segments).
A103299
Number of optimal rulers with n segments (n>=0).
Original entry on oeis.org
1, 1, 2, 2, 4, 6, 12, 4, 6, 2, 2, 4, 12, 4, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 4
Offset: 0
a(5)=6 counts the optimal rulers with 5 segments, {[0,1,6,9,11,13], [0,2,4,7,12,13], [0,1,4,5,11,13], [0,2,8,9,12,13], [0,1,2,6,10,13], [0,3,7,11,12,13]}.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, MRLA search results and source code, Nov 6 2020.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Large Minimum Redundancy Linear Arrays: Systematic Search of Perfect and Optimal Rulers Exploiting Parallel Processing, IEEE Open Journal of Antennas and Propagation, 2 (2021), 79-85.
- Index entries for sequences related to perfect rulers.
Cf.
A103296 (Complete rulers with n segments),
A103301 (Perfect rulers with n segments).
Terms a(20)-a(24) proved by exhaustive search by Fabian Schwartau,
Yannic Schröder, Lars Wolf, Joerg Schoebel, Feb 22 2021
A103301
Number of perfect rulers with n segments (n>=0).
Original entry on oeis.org
1, 1, 3, 9, 24, 88, 254, 1064, 1644, 3382, 4156, 8022, 26264, 52012, 25434, 8506, 5632, 6224, 12330, 34224, 108854, 103156, 75992, 86560, 69084
Offset: 0
a(3)=9 counts the perfect rulers with 3 segments, {[0,1,2,4],[0,2,3,4], [0,1,3,4],[0,1,3,5],[0,2,4,5],[0,1,2,5],[0,3,4,5],[0,1,4,6],[0,2,5,6]}.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, MRLA search results and source code, Nov 6 2020.
- F. Schwartau, Y. Schröder, L. Wolf and J. Schoebel, Large Minimum Redundancy Linear Arrays: Systematic Search of Perfect and Optimal Rulers Exploiting Parallel Processing, IEEE Open Journal of Antennas and Propagation, 2 (2021), 79-85.
- Index entries for sequences related to perfect rulers.
Terms a(19)-a(24) found by exhaustive search by Fabian Schwartau,
Yannic Schröder, Lars Wolf, Joerg Schoebel, Feb 23 2021
Showing 1-10 of 21 results.
Comments