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!)
A278538 a(n) = index of the row where n is located in array A278505. 9
1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 2, 1, 4, 1, 4, 1, 2, 1, 5, 1, 3, 1, 2, 1, 5, 1, 6, 1, 2, 1, 6, 1, 3, 1, 2, 1, 4, 1, 7, 1, 2, 1, 7, 1, 3, 1, 2, 1, 8, 1, 5, 1, 2, 1, 4, 1, 3, 1, 2, 1, 8, 1, 9, 1, 2, 1, 9, 1, 3, 1, 2, 1, 6, 1, 4, 1, 2, 1, 10, 1, 3, 1, 2, 1, 5, 1, 10, 1, 2, 1, 11, 1, 3, 1, 2, 1, 4, 1, 7, 1, 2, 1, 11, 1, 3, 1, 2, 1, 12, 1, 5, 1, 2, 1, 4, 1, 3, 1, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Ordinal transform of A278539 (most likely, but hinges on that also the columns of A278505 are strictly growing).
LINKS
FORMULA
If A278169(n) = 1, a(n) = A100617(n), otherwise a(n) = A278528(n).
If n = A000960(k), a(n) = k, otherwise a(n) = number of the round in which n is removed in the Flavius sieve.
PROG
(Scheme)
(define (A278538 n) (if (not (zero? (A278169 n))) (A100617 n) (A278528 n)))
(PARI) a(n)=local(A=n, B=n-1, m=0); until(A==B, m=m+1; A=abs(A-m-A%m); B=abs(B-m-B%m)); m-1 \\ Mikhail Kurkov, Apr 30 2022
CROSSREFS
Sequence in context: A268187 A232440 A355749 * A282903 A332677 A090329
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 23 2016
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 18 08:01 EDT 2024. Contains 371769 sequences. (Running on oeis4.)