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

A144320
Shifts left when Dirichlet convolution (DC:(b,b)->a) applied 6 times.
1
1, 1, 64, 4096, 264160, 16906240, 1082257408, 69264474112, 4432942899904, 283708353851392, 18157335711582208, 1162069485541261312, 74372447143871647744, 4759836617207785455616, 304629543505661931028480
OFFSET
1,3
LINKS
MAPLE
k:=6: with (numtheory): dc:= proc(b, c) proc(n) option remember; add (b(d) *c(n/d), d=`if`(n<0, {}, divisors(n))) end end: a:='a': b[1]:= dc(a, a): for t from 2 to k do b[t]:= dc(b[t-1], b[t-1]) od: a:= n-> `if`(n=1, 1, b[k](n-1)): seq (a(n), n=1..25);
CROSSREFS
6th column of A144324.
Sequence in context: A222934 A267994 A089357 * A324493 A324490 A262396
KEYWORD
eigen,nonn
AUTHOR
Alois P. Heinz, Sep 17 2008
STATUS
approved