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-4 of 4 results.

A332938 Indices of the primitive rows of the Wythoff array (A035513); see Comments.

Original entry on oeis.org

1, 2, 6, 7, 8, 10, 11, 12, 14, 17, 18, 20, 21, 23, 24, 26, 27, 30, 32, 33, 36, 37, 38, 39, 40, 42, 44, 46, 48, 49, 50, 53, 54, 59, 60, 62, 63, 64, 65, 66, 68, 69, 70, 72, 74, 75, 76, 79, 80, 81, 84, 85, 86, 88, 90, 92, 94, 95, 98, 100, 101, 102, 104, 107
Offset: 1

Views

Author

Clark Kimberling, Mar 03 2020

Keywords

Comments

In a row of the Wythoff array, either every two consecutive terms are relatively prime or else no two consecutive terms are relatively prime. In the first case, we call the row primitive; otherwise, the row is an integer multiple of a tail of a preceding row. Conjectures: the maximal number of consecutive primitive rows is 5, and the limiting proportion of primitive rows exists and is approximately 0.608.

Examples

			The Wythoff array begins:
   1    2    3    5    8   13   21   34   55   89  144 ...
   4    7   11   18   29   47   76  123  199  322  521 ...
   6   10   16   26   42   68  110  178  288  466  754 ...
   9   15   24   39   63  102  165  267  432  699 1131 ...
  12   20   32   52   84  136  220  356  576  932 1508 ...
  14   23   37   60   97  157  254  411  665 1076 1741 ...
  17   28   45   73  118  191  309  500  809 1309 2118 ...
  19   31   50   81  131  212  343  555  898 1453 2351 ...
  22   36   58   94  152  246  398  644 1042 1686 2728 ...
Row 1: A000045 (Fibonacci numbers, a primitive row)
Row 2: A000032 (Lucas numbers, primitive)
Row 3: 2 times a tail of row 1
Row 4: 3 times a tail of row 1
Row 5  4 times a tail of row 1
Row 6:  essentially A000285, primitive
Row 7:  essentially A022095, primitive
Row 8:  essentially A013655, primitive
Row 9:  2 times a tail of row 2
Thus first five terms of (a(n)) are 1,2,6,7,8.
		

Crossrefs

Programs

  • Mathematica
    W[n_, k_] := Fibonacci[k + 1] Floor[n*GoldenRatio] + (n - 1) Fibonacci[k]; (* A035513 *)
    t = Table[GCD[W[n, 1], W[n, 2]], {n, 1, 160}]  (* A332937 *)
    Flatten[Position[t, 1]]  (* A332938 *)

A173027 Numbers of rows R of the Wythoff array such that R is the n-th multiple of a tail of the Fibonacci sequence.

Original entry on oeis.org

1, 3, 4, 5, 16, 19, 22, 25, 28, 31, 34, 97, 105, 113, 121, 129, 137, 145, 153, 161, 169, 177, 185, 193, 201, 209, 217, 225, 233, 631, 652, 673, 694, 715, 736, 757, 778, 799, 820, 841, 862, 883, 904, 925, 946, 967, 988, 1009, 1030, 1051, 1072, 1093, 1114, 1135
Offset: 1

Views

Author

Clark Kimberling, Feb 07 2010

Keywords

Comments

Row 1 of the array A173028.
Contribution from K. G. Stier, Dec 08 2012: (Start)
It appears that the numbers of this sequence form groups of m members respectively with same distance d of two consecutive values a(n) such that d is equal to even-indexed Fibonacci numbers (A001906) while m is equal to even-indexed Lucas numbers (A005248). Example: from n=1365 to 3571 d=987 and m=2207;
Also of interest are the gaps between two consecutive groups which appear to be sums of Fibonacci numbers F(2*n) plus F(4*n-2). Example: gap 5 after a(76) is 2639 = F(10) + F(18) = 55 + 2584.
Likewise, the tail (as mentioned in this sequence's name) of the Fibonacci sequence is chopped off by two initial terms at each of the gap positions. (End)

Examples

			Referring to rows of the Wythoff array (A035513),
Row 1: (1,2,3,5,...) = 1*(1,2,3,...)
Row 3: (6,10,16,...) = 2*(3,5,8,...)
Row 4: (9,15,24,...) = 3*(3,5,8,...)
Row 5: (12,20,32,...) = 4*(3,5,8,...)
Row 16: (40,65,105...) = 8*(5,13,21,...).
		

Crossrefs

A220249 Numbers of rows R of the Wythoff array such that R is the n-th multiple of a tail of the Lucas sequence.

Original entry on oeis.org

2, 9, 13, 45, 56, 67, 78, 89, 262, 291, 320, 349, 378, 407, 436, 465, 494, 523, 552, 581, 610, 1673, 1749, 1825, 1901, 1977, 2053, 2129, 2205, 2281, 2357, 2433, 2509, 2585, 2661, 2737, 2813, 2889, 2965, 3041, 3117, 3193, 3269, 3345, 3421, 3497, 3573, 3649
Offset: 1

Views

Author

K. G. Stier, Dec 08 2012

Keywords

Comments

This sequence is corresponding to A173027. Also Row 2 of the array A173028.
It appears that the numbers of this sequence form groups of m members respectively with same distance d of two consecutive values a(n) such that d is equal to odd-indexed Lucas numbers (A002878) while m is equal to odd-indexed Fibonacci numbers (A001519). Example: from n=988 to 2584 d=3571 and m=1597;
Also of interest are the gaps between two consecutive groups which appear to be sums of one Lucas number L(2n+1) plus one Fibonacci number F(4n). Example: gap 5 after a(55) is 6964 = L(11) + F(20) = 199 + 6765
Likewise, the tail (as mentioned in this sequence's name) of the Lucas sequence is chopped off by two initial terms at each of the gap positions.

Examples

			Referring to rows of the Wythoff array (A035513),
Row 2: (4,7,11,18,...) = 1*(4,7,11,18,29,47,76,...)
Row 9: (22,36,58,...) = 2*(11,18,29,47,76...)
Row 13: (33,54,87,...) = 3*(11,18,29,47,76...)
Row 45: (116,188,304,...) = 4*(29,47,76...)
		

Crossrefs

A332937 a(n) is the greatest common divisor of the first two terms of row n of the Wythoff array (A035513).

Original entry on oeis.org

1, 1, 2, 3, 4, 1, 1, 1, 2, 1, 1, 1, 3, 1, 2, 5, 1, 1, 6, 1, 1, 7, 1, 1, 8, 1, 1, 9, 2, 1, 10, 1, 1, 11, 2, 1, 1, 1, 1, 1, 2, 1, 3, 1, 4, 1, 2, 1, 1, 1, 2, 3, 1, 1, 2, 5, 4, 3, 1, 1, 2, 1, 1, 1, 1, 1, 6, 1, 1, 1, 2, 1, 2, 1, 1, 1, 4, 7, 1, 1, 1, 3, 2, 1, 1, 1, 2, 1, 8, 1, 3, 1, 2, 1, 1, 5, 12, 1, 2, 1, 1, 1, 2, 1, 13, 3, 1, 1
Offset: 1

Views

Author

Clark Kimberling, Mar 03 2020

Keywords

Comments

a(n) is also the gcd of every pair of consecutive terms of row n of the Wythoff array. Conjectures: the maximal number of consecutive 1's is 5, and the limiting proportion of 1's exists. See A332938.
If seems that for all primes p > 3, a(1+p) = 1. - Antti Karttunen, Jan 15 2025

Examples

			See A332938.
		

Crossrefs

Cf. A000045, A173027, A173028, A035513, A332938 (positions of 1's).

Programs

  • Mathematica
    W[n_, k_] := Fibonacci[k + 1] Floor[n*GoldenRatio] + (n - 1) Fibonacci[k]; (* A035513 *)
    t = Table[GCD[W[n, 1], W[n, 2]], {n, 1, 160}]  (* A332937 *)
    Flatten[Position[t, 1]]  (* A332938 *)
  • PARI
    T(n, k) = (n+sqrtint(5*n^2))\2*fibonacci(k+1) + (n-1)*fibonacci(k); \\ A035513
    a(n) = gcd(T(n, 0), T(n, 1)); \\ Michel Marcus, Mar 03 2020

Extensions

More terms from Antti Karttunen, Jan 15 2025
Showing 1-4 of 4 results.