cp's OEIS Frontend

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.

A144322 Shifts left when Dirichlet convolution (DC:(b,b)->a) applied 8 times.

This page as a plain text file.
%I A144322 #4 Mar 30 2012 17:37:28
%S A144322 1,1,256,65536,16809856,4303323136,1101667434496,282026863230976,
%T A144322 72198881268083456,18482913606768459776,4731625884430073102336,
%U A144322 1211296226414098714198016,310091833962291289108054016
%N A144322 Shifts left when Dirichlet convolution (DC:(b,b)->a) applied 8 times.
%H A144322 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>
%p A144322 k:=8: 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 A144322 8th column of A144324.
%K A144322 eigen,nonn
%O A144322 1,3
%A A144322 _Alois P. Heinz_, Sep 17 2008