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!)
A333751 Sum of nonprime divisors of n that are <= sqrt(n). 3
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 5, 1, 1, 1, 11, 1, 1, 1, 5, 1, 7, 1, 5, 1, 1, 1, 11, 1, 1, 1, 5, 1, 7, 1, 5, 1, 1, 1, 11, 1, 1, 1, 13, 1, 7, 1, 5, 1, 1, 1, 19, 1, 1, 1, 5, 1, 7, 1, 13, 10, 1, 1, 11, 1, 1, 1, 13, 1, 16 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,16
LINKS
FORMULA
G.f.: Sum_{k>=1} A018252(k) * x^(A018252(k)^2) / (1 - x^A018252(k)).
MATHEMATICA
Table[DivisorSum[n, # &, # <= Sqrt[n] && !PrimeQ[#] &], {n, 1, 90}]
nmax = 90; CoefficientList[Series[Sum[Boole[!PrimeQ[k]] k x^(k^2)/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
PROG
(PARI) a(n) = sumdiv(n, d, if ((d^2<=n) && !isprime(d), d)); \\ Michel Marcus, Apr 03 2020
CROSSREFS
Sequence in context: A109768 A069293 A347398 * A323921 A293235 A066803
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 03 2020
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 September 4 08:26 EDT 2024. Contains 375679 sequences. (Running on oeis4.)