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

A367291 Inverse permutation to A367290.

Original entry on oeis.org

1, 3, 5, 7, 2, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 4, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 121, 123
Offset: 1

Views

Author

Rémy Sigrist, Nov 12 2023

Keywords

Examples

			A367290(33) = 19, hence a(19) = 33.
		

Crossrefs

Cf. A367290.

Programs

  • PARI
    See Links section.

A367288 Lexicographically earliest sequence of distinct nonnegative integers such that for any n > 0, a(n-1) and a(n) are congruent modulo n, and the least value not yet in the sequence appears as soon as possible.

Original entry on oeis.org

0, 1, 5, 2, 18, 3, 39, 4, 60, 6, 106, 7, 151, 8, 204, 9, 265, 10, 334, 11, 411, 12, 496, 13, 589, 14, 690, 15, 799, 16, 916, 17, 1009, 19, 1175, 20, 1316, 21, 1465, 22, 1622, 23, 1787, 24, 1960, 25, 2141, 26, 2330, 27, 2527, 28, 2732, 29, 2945, 30, 3166, 31
Offset: 0

Views

Author

Rémy Sigrist, Nov 12 2023

Keywords

Comments

To build the sequence:
- we start with a(0) = 0, and repeatedly:
- let a(n) be the last known term and v the least value not yet in the sequence,
- if a(n) and v are congruent modulo n+1 then a(n+1) = v,
- otherwise a(n+2) = v and a(n+1) is chosen as small as possible in such a way as to satisfy the required congruences (this is always possible as n+1 and n+2 are coprime).
This construction is similar to that of A352713.
This sequence is a variant of A125717 and, by design, is guaranteed to be a permutation of the nonnegative integers (with inverse A367289).

Examples

			The first terms are:
  n   a(n)  a(n-1) mod n  a(n) mod n
  --  ----  ------------  ----------
   0     0  N/A           N/A
   1     1             0           0
   2     5             1           1
   3     2             2           2
   4    18             2           2
   5     3             3           3
   6    39             3           3
   7     4             4           4
   8    60             4           4
   9     6             6           6
  10   106             6           6
  11     7             7           7
  12   151             7           7
  13     8             8           8
		

Crossrefs

Programs

  • PARI
    See Links section.
Showing 1-2 of 2 results.