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!)
A305798 Dirichlet convolution of A078898 with itself. 8
1, 2, 2, 5, 2, 8, 2, 12, 5, 12, 2, 22, 2, 16, 8, 28, 2, 28, 2, 34, 10, 24, 2, 56, 5, 28, 14, 46, 2, 52, 2, 64, 14, 36, 8, 83, 2, 40, 16, 88, 2, 70, 2, 70, 26, 48, 2, 136, 5, 64, 20, 82, 2, 94, 10, 120, 22, 60, 2, 164, 2, 64, 34, 144, 12, 106, 2, 106, 26, 100, 2, 220, 2, 76, 36, 118, 8, 124, 2, 216, 42, 84, 2, 224, 14, 88, 32, 184, 2, 192, 10 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Sum_{d|n} A078898(d)*A078898(n/d).
PROG
(PARI)
up_to = 65537;
ordinal_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), pt); for(i=1, length(invec), if(mapisdefined(om, invec[i]), pt = mapget(om, invec[i]), pt = 0); outvec[i] = (1+pt); mapput(om, invec[i], (1+pt))); outvec; };
A020639(n) = if(n>1, if(n>n=factor(n, 0)[1, 1], n, factor(n)[1, 1]), 1); \\ From A020639
v078898 = ordinal_transform(vector(up_to, n, A020639(n)));
A078898(n) = v078898[n];
A305798(n) = sumdiv(n, d, A078898(d)*A078898(n/d));
CROSSREFS
Sequence in context: A309208 A293225 A353851 * A305808 A353858 A347466
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jun 13 2018
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)