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

A179754
Iterates of A122237 starting from the initial value 6.
2
6, 18, 48, 141, 431, 1427, 4692, 15417, 52833, 189576, 667458, 2303485, 8261483, 30854617, 112235989, 396544978, 1457813051, 5573491517, 20668205325, 74283571059, 277368667214, 1076038620556, 4041473193751, 14706699067814
OFFSET
1,1
COMMENTS
See the illustrations at A179755.
LINKS
FORMULA
a(1) = 6, a(n) = A122237(A179754(a(n-1))).
PROG
(Scheme:) (define (A179754 n) (if (= 1 n) 6 (A122237 (A179754 (-1+ n)))))
CROSSREFS
a(n+1) = A127307(A179756(n)).
Sequence in context: A003198 A099857 A163765 * A350155 A086926 A328534
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 03 2010
STATUS
approved