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.

A120860 Fixed-j dispersion for Q = 8: Square array D(g,h) (g, h >= 1), read by ascending antidiagonals.

Original entry on oeis.org

1, 2, 5, 3, 10, 29, 4, 17, 58, 169, 6, 22, 99, 338, 985, 7, 34, 128, 577, 1970, 5741, 8, 39, 198, 746, 3363, 11482, 33461, 9, 46, 227, 1154, 4348, 19601, 66922, 195025, 11, 51, 268, 1323, 6726, 25342, 114243, 390050, 1136689, 12, 63, 297, 1562, 7711
Offset: 1

Views

Author

Clark Kimberling, Jul 09 2006

Keywords

Comments

For each positive integer n, there exists a unique pair (j,k) of positive integers such that (j + k + 1)^2 - 4*k = 8*n^2; in fact, j(n) = A087056(n) and k(n) = A087059(n). Suppose g >= 1 and let j = j(g).
The numbers in row g of array D are among those n for which (j + k + 1)^2 - 4*k = 8*n^2 for some k; that is, j stays fixed and k and n vary - hence the name "fixed-j dispersion". (The fixed-k dispersion for Q = 8 is A120861.)
Every positive integer occurs exactly once in D and every pair of rows are mutually interspersed. That is, beginning at the first term of any row having greater initial term than that of another row, all the following terms individually separate the individual terms of the other row. Possibly, D is the dispersion of A098021.
From Petros Hadjicostas, Jul 08 2020: (Start)
It appears that the first column of the dispersion array D is A187968. That is, the first column of D consists of those positive integers m such that A187967(m) = 1; i.e., those m for which floor(sqrt(2)*m + 2*sqrt(2)) - floor(sqrt(2)*m) - floor(2*sqrt(2)) = 1.
Indeed, Clark Kimberling, the author of this sequence and of sequence A187968, conjectured that A187968 is the complement of A098021, and that A098021 is the complement of the first column of array D here. (End)

Examples

			Northwest corner:
  1,  5,  29,  169,  985,  5741,  33461,  195025, ...
  2, 10,  58,  338, 1970, 11482,  66922,  390050, ...
  3, 17,  99,  577, 3363, 19601, 114243,  665857, ...
  4, 22, 128,  746, 4348, 25342, 147704,  860882, ...
  6, 34, 198, 1154, 6726, 39202, 228486, 1331714, ...
  7, 39, 227, 1323, 7711, 44943, 261947, 1526739, ...
  ...
		

Crossrefs

Programs

  • PARI
    f(n) = 3*n + 2*sqrtint(2*n^2); \\ A098021
    unused(listus) = {my(v=vecsort(Vec(listus))); for (i=1, vecmax(v), if (!vecsearch(v, i), return (i)););};
    D(nb) = {my(m = matrix(nb, nb), t); my(listus = List); for (g=1, nb, if (g==1, t = 1, t = unused(listus)); m[g,1]=t; listput(listus, t); t = f(t); m[g,2]=t; listput(listus, t); for (h=3, nb, t = 6*m[g,h-1] - m[g,h-2]; m[g, h] = t; listput(listus, t););); m;}; \\ Michel Marcus, Jul 08 2020

Formula

Define f(n) = 3*n + 2*floor(n*2^(1/2)). Let D(g,h) be the term in row g and column h of the array to be defined:
D(1,1) = 1; D(1,2) = f(1); D(1,h) = 6*D(1,h-1) - D(1,h-2) for h >= 3.
For arbitrary g >= 1, once row g is defined, define D(g+1,1) = least positive integer not in rows 1, 2, ..., g; D(g+1,2) = f(D(g+1,1)); and D(g+1,h) = 6*D(g+1,h-1) - D(g+1,h-2) for h >= 3. All rows after row 1 are thus inductively defined. [Corrected by Petros Hadjicostas, Jul 07 2020]

Extensions

Name edited by Petros Hadjicostas, Jul 07 2020