login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144317 Shifts left when Dirichlet convolution (DC:(b,b)->a) applied 3 times. 3
1, 1, 8, 64, 540, 4320, 35008, 280064, 2244152, 17955008, 143670304, 1149362432, 9195171392, 73561371136, 588492929536, 4707943678208, 37663565234758, 301308521878064, 2410468302643136, 19283746421145088, 154269972376667232 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
N. J. A. Sloane, Transforms
MAPLE
k:=3: 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..30);
MATHEMATICA
dc[b_, c_] := Module[{proc}, proc[n_] := proc[n] = Sum[b[d]*c[n/d], {d, If[n < 0, {}, Divisors[n]]}]; proc];
A[n_, k_] := Module[{a, b, t}, b[1] = dc[a, a]; For[t = 2, t <= k, t++, b[t] = dc[b[t-1], b[t-1]]]; a = Function[m, If[m == 1, 1, b[k][m - 1]]]; a[n]];
a[n_] := A[n, 3];
Array[a, 30] (* Jean-François Alcover, Jun 11 2018, after Alois P. Heinz *)
CROSSREFS
3rd column of A144324, 7th column of A144823.
Sequence in context: A033144 A238300 A344271 * A344054 A344252 A199567
KEYWORD
eigen,nonn
AUTHOR
Alois P. Heinz, Sep 17 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 06:45 EDT 2024. Contains 371906 sequences. (Running on oeis4.)