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!)
A246279 Transpose of array A246278: A(row,1) = 2*row, and for col > 1, A(row,col) = A003961(A(row,col-1)). 7
2, 3, 4, 5, 9, 6, 7, 25, 15, 8, 11, 49, 35, 27, 10, 13, 121, 77, 125, 21, 12, 17, 169, 143, 343, 55, 45, 14, 19, 289, 221, 1331, 91, 175, 33, 16, 23, 361, 323, 2197, 187, 539, 65, 81, 18, 29, 529, 437, 4913, 247, 1573, 119, 625, 75, 20, 31, 841, 667, 6859, 391, 2873, 209, 2401, 245, 63, 22 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Permutation of natural numbers larger than 1.
See comments in A246278 (the same array transposed).
LINKS
FORMULA
If col = 1, A(row,col) = 2*row, otherwise A(row,col) = A003961(A(row,col-1)).
EXAMPLE
The top-left corner of the array:
2, 3, 5, 7, 11, 13, 17, 19, 23, ...
4, 9, 25, 49, 121, 169, 289, 361, 529, ...
6, 15, 35, 77, 143, 221, 323, 437, 667, ...
8, 27, 125, 343, 1331, 2197, 4913, 6859, 12167, ...
10, 21, 55, 91, 187, 247, 391, 551, 713, ...
12, 45, 175, 539, 1573, 2873, 5491, 8303, 15341, ......
PROG
(Scheme)
(define (A246279 n) (A246278bi (A004736 n) (A002260 n)))
(define (A246278bi row col) (if (= 1 row) (* 2 col) (A003961 (A246278bi (- row 1) col))))
CROSSREFS
Transpose of A246278.
One more than A246273.
Sequence in context: A095904 A096153 A083140 * A285112 A253565 A124652
KEYWORD
nonn,tabl
AUTHOR
Antti Karttunen, Aug 21 2014
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 16 10:29 EDT 2024. Contains 371709 sequences. (Running on oeis4.)