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.

A269838 a(1)=1, then a(n) is the smallest unused multiple of a(A062050(n-1)).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 9, 8, 7, 10, 12, 16, 15, 18, 27, 24, 11, 14, 21, 20, 25, 30, 36, 32, 28, 40, 48, 64, 45, 54, 81, 72, 13, 22, 33, 44, 35, 42, 63, 56, 49, 50, 60, 80, 75, 90, 108, 96, 55, 70, 84, 100, 125, 120, 144, 128, 112, 160, 192, 256, 135, 162, 243, 216, 17
Offset: 1

Views

Author

Ivan Neretin, Mar 06 2016

Keywords

Comments

A permutation of positive integers.
Alternative construction: start with the infinite sequence of all 1s, at step n look up the value of the term at n'th place (k), and if it has been used before, find the smallest unused multiple of k (m*k), find all occurrences of k in the sequence (there are going to be infinitely many), and change every second of them to m*k (see Example).

Examples

			Start with
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
At step 1, do nothing.
At step 2, change every second 1 to 2.
2: 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2
At step 3, change every other remaining 1 to 3.
3: 1 2 3 2 1 2 3 2 1 2 3 2 1 2 3 2
At step 4, change every other 2 to 4.
4: 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
And so on.
5: 1 2 3 4 5 2 3 4 1 2 3 4 5 2 3 4
6: 1 2 3 4 5 6 3 4 1 2 3 4 5 6 3 4
7: 1 2 3 4 5 6 9 4 1 2 3 4 5 6 9 4
8: 1 2 3 4 5 6 9 8 1 2 3 4 5 6 9 8
9: 1 2 3 4 5 6 9 8 7 2 3 4 5 6 9 8
...
		

Programs

  • Mathematica
    Fold[Append[#1, Min@Complement[Range[Max@#1 + 1]*#1[[#2 - 2^Floor@Log2[#2 - 1]]], #1]] &, {1}, Range[2, 65]] (* Ivan Neretin, Mar 06 2016 *)