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

A353117
Base-9 representation of A000422(n).
7
1, 23, 386, 5831, 82456, 1206503, 15355671, 202838110, 2484401020, 31322180131, 3835578242783, 525732558043736, 70648887825106821, 10365384555277543376, 1340704717754261643863, 173544168713353406577421
OFFSET
1,2
FORMULA
a(n) = A007095(A000422(n)).
PROG
(Ruby)
def A(k, n)
(1..n).map{|i| (1..i).to_a.reverse.join.to_i.to_s(k).to_i}
end
p A(9, 20)
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, Apr 24 2022
STATUS
approved