This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A144323 #9 Dec 20 2014 22:12:36 %S A144323 1,1,512,262144,134348544,68786454528,35218798673920, %T A144323 18032024921047040,9232396828183582208,4726987176064286720000, %U A144323 2420217434180064678903808,1239151326300193115598749696,634445479065716907074042200064 %N A144323 Shifts left when Dirichlet convolution (DC:(b,b)->a) applied 9 times. %H A144323 Alois P. Heinz, <a href="/A144323/b144323.txt">Table of n, a(n) for n = 1..100</a> %H A144323 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %p A144323 k:=9: 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..20); %Y A144323 9th column of A144324. %K A144323 eigen,nonn %O A144323 1,3 %A A144323 _Alois P. Heinz_, Sep 17 2008