login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A266194
Products of pairs made by match-making permutation: a(n) = A266195(n) * A266195(n+1).
3
2, 6, 12, 20, 30, 48, 56, 63, 90, 120, 192, 176, 187, 221, 416, 448, 252, 360, 380, 627, 495, 510, 748, 1408, 1344, 504, 864, 1008, 1820, 1495, 1518, 1650, 1000, 1400, 2520, 3024, 2016, 1776, 2516, 1768, 3328, 3456, 3483, 3741, 3770, 3900, 3960, 4092, 7936, 9728, 3040, 3920, 3577, 4088, 7616, 5576, 3936, 6624, 9936, 9648, 5628, 8148, 13289
OFFSET
1,1
LINKS
FORMULA
a(n) = A266195(n) * A266195(n+1).
a(n) = A048720(A266195(n), A266195(n+1)).
a(n) = A057889(A057889(A266195(n)) * A057889(A266195(n+1))). [See the comment in A266351.]
PROG
(Scheme, two variants)
(define (A266194 n) (* (A266195 n) (A266195 (+ n 1))))
(define (A266194 n) (A048720bi (A266195 n) (A266195 (+ n 1)))) ;; A048720bi implements the carryless binary multiplication, specified in A048720.
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Dec 26 2015
STATUS
approved