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.

A162696 Trajectory of 1 under morphism taking n to sorted divisors of n+1.

Original entry on oeis.org

1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2, 1, 3, 1, 2, 1, 3, 1, 5, 1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2, 1, 2, 3, 6, 1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2, 1, 3, 1, 2, 1, 3, 1, 5, 1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2, 1, 3, 1, 2, 1, 3, 1, 5, 1, 2, 1, 3, 1, 2, 1, 3, 1, 2, 4, 1, 7, 1, 2, 1, 3, 1, 2, 1, 2, 4, 1, 2
Offset: 1

Views

Author

Keywords

Comments

1 -> 1,2; 2->1,3; 3->1,2,4; ...

Examples

			1 -> 1,2 -> 1,2,1,3 -> 1,2,1,3,1,2,1,2,4 -> ...
		

Crossrefs

Programs

  • PARI
    v=[1,2];for(i=2,60,v=concat(v,divisors(v[i]+1)));v

Formula

a(A117160(k+1)) = k (this is the first occurrence of k in the sequence). - Rémy Sigrist, Jan 14 2023