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!)
A144823 Square array A(n,k), n>=1, k>=1, read by antidiagonals, with A(1,k)=1 and sequence a_k of column k shifts left when Dirichlet convolution with a_k (DC:(b,a_k)->a) applied k times. 10

%I #18 May 10 2019 11:45:58

%S 1,1,1,1,1,2,1,1,3,4,1,1,4,9,9,1,1,5,16,30,18,1,1,6,25,70,90,40,1,1,7,

%T 36,135,280,288,80,1,1,8,49,231,675,1168,864,168,1,1,9,64,364,1386,

%U 3475,4672,2647,340,1,1,10,81,540,2548,8496,17375,18884,7968,698,1,1,11,100

%N Square array A(n,k), n>=1, k>=1, read by antidiagonals, with A(1,k)=1 and sequence a_k of column k shifts left when Dirichlet convolution with a_k (DC:(b,a_k)->a) applied k times.

%H Alois P. Heinz, <a href="/A144823/b144823.txt">Antidiagonals n = 1..100, flattened</a>

%H N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>

%e Square array A(n,k) begins:

%e 1, 1, 1, 1, 1, 1, 1, 1, ...

%e 1, 1, 1, 1, 1, 1, 1, 1, ...

%e 2, 3, 4, 5, 6, 7, 8, 9, ...

%e 4, 9, 16, 25, 36, 49, 64, 81, ...

%e 9, 30, 70, 135, 231, 364, 540, 765, ...

%e 18, 90, 280, 675, 1386, 2548, 4320, 6885, ...

%e 40, 288, 1168, 3475, 8496, 18130, 35008, 62613, ...

%e 80, 864, 4672, 17375, 50976, 126910, 280064, 563517, ...

%p 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: seq(seq(A(n, 1+d-n), n=1..d), d=1..12);

%t 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], a]]; a = Function[m, If[m == 1, 1, b[k][m-1]]]; a[n]]; Table[Table [A[n, 1+d-n], {n, 1, d}], {d, 1, 12}] // Flatten (* _Jean-François Alcover_, Dec 20 2013, translated from Maple *)

%Y Columns 1-9 give: A038044, A144817, A144316, A144818, A144819, A144820, A144317, A144821, A144822.

%Y Rows 1+2, 3-4 give: A000012, A000027, A000290, A002414.

%K eigen,nonn,tabl

%O 1,6

%A _Alois P. Heinz_, Sep 21 2008

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 19 03:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)