The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A144819 Shifts left when Dirichlet convolution with a (DC:(b,a)->c) applied 5 times. 2
1, 1, 6, 36, 231, 1386, 8496, 50976, 306956, 1842276, 11060586, 66363516, 398229516, 2389377096, 14336517456, 86019146316, 516116428791, 3096698572746, 18580200896796, 111481205380776, 668887287816276 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
N. J. A. Sloane, Transforms
MAPLE
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:= proc(n, k) local a, b, t; b[1]:= dc(a, a); for t from 2 to k do b[t]:= dc(b[t-1], a) od: a:= n-> `if`(n=1, 1, b[k](n-1)); a(n) end: a:= n-> A(n, 5): seq (a(n), n=1..30);
MATHEMATICA
dc[b_, c_] := Module[{f}, f[n_] := f[n] = Sum[b[d] c[n/d], {d, If[n<0, {}, Divisors[n]]}]; f];
A[n_, k_] := Module[{a, b, t}, b[1] = dc[a, a]; For[t = 2, t <= k, t++, b[t] = dc[b[t-1], a]]; a = Function[m, If[m==1, 1, b[k][m-1]]]; a[n]];
a[n_] := A[n, 5];
Array[a, 30] (* Jean-François Alcover, Dec 18 2020, after Maple *)
CROSSREFS
5th column of A144823.
Sequence in context: A129327 A244889 A344269 * A284647 A099252 A057395
KEYWORD
eigen,nonn
AUTHOR
Alois P. Heinz, Sep 21 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 May 13 18:22 EDT 2024. Contains 372522 sequences. (Running on oeis4.)