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!)
A104362 Sum of divisors of A104357(n) = A104350(n) - 1. 8
1, 6, 12, 60, 180, 1260, 2760, 7560, 37800, 415800, 1265040, 16287864, 113538360, 567638664, 1135134000, 19298936664, 58868650320, 1113894381120, 5499724230000, 39112247205360, 423754918508832, 10054207233388032, 29220034833990000, 146100190526456640, 1915895635570469280, 5712343370808883200, 39885667247556843120 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
Max Alekseyev, Table of n, a(n) for n = 2..145 (terms for n = 2..74 from Amiram Eldar)
FORMULA
a(n) = A000203(A104357(n));
a(p) = A104350(p) for primes p.
MAPLE
A000142 := proc(n) RETURN(n!) ; end: A006530 := proc(n) local i, t1, t2, t3, t4; if n = 1 then RETURN(1) ; else t1 := numtheory[divisors](n); t2 := convert(t1, list); t3 := sort(t2); t4 := nops(t3); for i from 1 to t4 do if isprime(t3[t4+1-i]) then RETURN(t3[t4+1-i]); fi; od; RETURN(1); fi ; end: A104350 := proc(n) local k, resul ; resul := 1 ; for k from 1 to n do resul := resul*A006530(k) ; od ; RETURN(resul) ; end: A104357 := proc(n) A104350(n)-1 ; end: A104362 := proc(n) numtheory[sigma](A104357(n)) ; end: for n from 2 to 30 do printf("%d, ", A104362(n)) ; od ; # R. J. Mathar, Oct 30 2006
MATHEMATICA
a[n_] := DivisorSigma[1, Product[FactorInteger[k][[-1, 1]], {k, 1, n}]-1]; Table[a[n], {n, 2, 23}] (* Jean-François Alcover, Feb 10 2018 *)
CROSSREFS
Sequence in context: A334994 A117762 A178957 * A123900 A103972 A299855
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 06 2005
EXTENSIONS
Corrected and extended by R. J. Mathar, Oct 30 2006
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)