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.

A322080 Square array A(n,k), n >= 1, k >= 0, read by antidiagonals: A(n,k) = Sum_{p|n, p prime} p^k.

This page as a plain text file.
%I A322080 #12 Jan 07 2024 15:44:52
%S A322080 0,0,1,0,2,1,0,4,3,1,0,8,9,2,1,0,16,27,4,5,2,0,32,81,8,25,5,1,0,64,
%T A322080 243,16,125,13,7,1,0,128,729,32,625,35,49,2,1,0,256,2187,64,3125,97,
%U A322080 343,4,3,2,0,512,6561,128,15625,275,2401,8,9,7,1,0,1024,19683,256,78125,793,16807,16,27,29,11,2
%N A322080 Square array A(n,k), n >= 1, k >= 0, read by antidiagonals: A(n,k) = Sum_{p|n, p prime} p^k.
%H A322080 Andrew Howroyd, <a href="/A322080/b322080.txt">Table of n, a(n) for n = 1..1275</a> (first 50 antidiagonals)
%H A322080 <a href="/index/Su#sums_of_divisors">Index entries for sequences related to sums of divisors</a>
%F A322080 G.f. of column k: Sum_{j>=1} prime(j)^k*x^prime(j)/(1 - x^prime(j)).
%e A322080 Square array begins:
%e A322080   0,  0,   0,    0,    0,     0,  ...
%e A322080   1,  2,   4,    8,   16,    32,  ...
%e A322080   1,  3,   9,   27,   81,   243,  ...
%e A322080   1,  2,   4,    8,   16,    32,  ...
%e A322080   1,  5,  25,  125,  625,  3125,  ...
%e A322080   2,  5,  13,   35,   97,   275,  ...
%t A322080 Table[Function[k, Sum[Boole[PrimeQ[d]] d^k, {d, Divisors[n]}]][i - n], {i, 0, 12}, {n, 1, i}] // Flatten
%t A322080 Table[Function[k, SeriesCoefficient[Sum[Prime[j]^k x^Prime[j]/(1 - x^Prime[j]), {j, 1, n}], {x, 0, n}]][i - n], {i, 0, 12}, {n, 1, i}] // Flatten
%o A322080 (PARI) T(n,k)={vecsum([p^k | p<-factor(n)[,1]])}
%o A322080 for(n=1, 10, for(k=0, 8, print1(T(n, k), ", ")); print); \\ _Andrew Howroyd_, Nov 26 2018
%Y A322080 Columns k=0..4 give A001221, A008472, A005063, A005064, A005065.
%Y A322080 Cf. A109974, A200768 (diagonal), A285425, A286880, A321258.
%K A322080 nonn,tabl
%O A322080 1,5
%A A322080 _Ilya Gutkovskiy_, Nov 26 2018