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”).

A214323
a(n) = gcd( A214551(n-1), A214551(n-3) ) with a(0) = a(1) = a(2) = 1.
7
1, 1, 1, 1, 1, 1, 2, 3, 2, 3, 2, 1, 1, 1, 1, 7, 3, 2, 3, 4, 1, 1, 1, 1, 1, 1, 4, 1, 5, 1, 1, 1, 1, 8, 1, 2, 1, 6, 1, 4, 5, 4, 5, 1, 1, 1, 1, 11, 36, 1, 1, 1, 7, 5, 1, 8, 3, 4, 3, 2, 7, 2, 1, 1, 1, 3, 1, 1, 2, 1, 1, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1
OFFSET
0,7
COMMENTS
A214551(n) = A214322(n)/A214323(n).
A214323(A214653(n)) = 1. - Reinhard Zumkeller, Jul 24 2012
LINKS
PROG
(Haskell)
a214323 n = a214323_list !! n
a214323_list = 1 : 1 : 1 : zipWith gcd a214551_list (drop 2 a214551_list)
-- Reinhard Zumkeller, Jul 24 2012
CROSSREFS
Cf. A214551, A214322; A214324, A214325 (record values and where they occur).
Sequence in context: A114388 A075789 A341018 * A321865 A353526 A244544
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 23 2012
STATUS
approved