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!)
A082050 Sum of divisors of n that are not of the form 3k+1. 3
0, 2, 3, 2, 5, 11, 0, 10, 12, 7, 11, 23, 0, 16, 23, 10, 17, 38, 0, 27, 24, 13, 23, 55, 5, 28, 39, 16, 29, 61, 0, 42, 47, 19, 40, 86, 0, 40, 42, 35, 41, 88, 0, 57, 77, 25, 47, 103, 0, 57, 71, 28, 53, 119, 16, 80, 60, 31, 59, 153, 0, 64, 96, 42, 70, 121, 0, 87, 95, 56, 71, 190 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(A004611(n)) = 0.
G.f.: Sum_{k>=1} x^(2*k)*(2+3*x^k+x^(3*k))/(1-x^(3*k))^2. - Vladeta Jovovic, Apr 11 2006
Sum_{k=1..n} a(k) ~ c * n^2, where c = Pi^2/18 = 0.548311... (A086463). - Amiram Eldar, Jan 06 2024
MATHEMATICA
sd[n_]:=Total[Select[Divisors[n], !IntegerQ[(#-1)/3]&]]; Array[sd, 80] (* Harvey P. Dale, May 04 2011 *)
PROG
(PARI) for(n=1, 100, print1(sumdiv(n, d, if(d%3!=1, d))", "))
(PARI)
N = 66; x = 'x + O('x^N);
gf = sum(n=1, N, (3*n-1)*x^(3*n-1)/(1-x^(3*n-1)) + (3*n)*x^(3*n)/(1-x^(3*n)) );
v = Vec(gf); concat([0], v)
\\ Joerg Arndt, May 17 2013
CROSSREFS
Sequence in context: A335362 A371395 A059098 * A353956 A367633 A183098
KEYWORD
nonn,easy
AUTHOR
Ralf Stephan, Apr 02 2003
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)