A086718 Convolution of sequence of primes with sequence sigma(n).
2, 9, 22, 48, 85, 151, 231, 355, 500, 709, 937, 1267, 1617, 2069, 2575, 3193, 3860, 4686, 5549, 6593, 7725, 8985, 10337, 11961, 13591, 15464, 17498, 19714, 22036, 24690, 27378, 30382, 33603, 37023, 40597, 44733, 48720, 53152, 57950, 62978, 68074, 73898, 79558
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Maple
N:= 100: # to get a(1)..a(N) P:= [seq(ithprime(i),i=1..N+1)]: S:= [seq(numtheory:-sigma(i),i=1..N+1)]: seq(add(P[i]*S[n-i],i=1..n-1),n=2..N+1); # Robert Israel, Sep 09 2020
-
PARI
p=primes(30); s=vector(30,i, sigma(i)); conv(u,v)=local(w); w=vector(length(u),i,sum(j=1,i,u[j]*v[i+1-j])); w; conv(p,s)
Extensions
More terms from Robert Israel, Sep 09 2020
Comments