login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A132422 Array read by antidiagonals: A(m,1) = 1 for all positive integers m. A(m,n) = the m-th integer from among those positive integers which are coprime to A(m,n-1). 1
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 2, 4, 4, 1, 1, 3, 5, 7, 5, 1, 1, 2, 3, 4, 6, 6, 1, 1, 3, 4, 7, 13, 17, 7, 1, 1, 2, 5, 4, 5, 6, 8, 8, 1, 1, 3, 3, 7, 6, 17, 13, 15, 9, 1, 1, 2, 4, 4, 13, 6, 7, 14, 13, 10, 1, 1, 3, 5, 7, 5, 17, 8, 17, 9, 23, 11, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Many, if not all, sequences {A(m,n)}, for fixed m, are periodic after some point. A(m,n) = A(m,n+A132423(n)) for all n > some integer.
LINKS
EXAMPLE
Array begins:
1, 1, 1, 1, 1, 1, ...
1, 2, 3, 2, 3, 2, ...
1, 3, 4, 5, 3, 4, ...
1, 4, 7, 4, 7, 4, ...
1, 5, 6, 13, 5, 6, ...
1, 6, 17, 6, 17, 6, ...
...
For example, the positive integers which are coprime to A(4,2)=4 are 1, 3, 5, 7, 9, ... The 4th of these integers is 7. So A(4,3) = 7.
PROG
(PARI) A(m, n) = if(n==1, 1, my(k, t=A(m, n-1)); for(c=1, m, until(gcd(k, t)==1, k++)); k); \\ Jinyuan Wang, Aug 10 2021
CROSSREFS
Cf. A132423.
Sequence in context: A098802 A048804 A158565 * A065133 A343033 A307239
KEYWORD
nonn,tabl
AUTHOR
Leroy Quet, Aug 20 2007
EXTENSIONS
More terms from Jinyuan Wang, Aug 10 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:17 EDT 2024. Contains 371960 sequences. (Running on oeis4.)