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!)
A191150 Hypersigma(n): sum of the divisors of n plus the recursive sum of the divisors of the restricted divisors. 4
1, 3, 4, 10, 6, 19, 8, 28, 17, 27, 12, 64, 14, 35, 34, 72, 18, 82, 20, 88, 44, 51, 24, 188, 37, 59, 61, 112, 30, 165, 32, 176, 64, 75, 62, 290, 38, 83, 74, 252, 42, 209, 44, 160, 139, 99, 48, 512, 65, 166, 94, 184, 54, 306, 90, 316, 104, 123, 60, 588, 62, 131 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
First we add up all the divisors of n, and then we add in the divisors of each restricted divisor of n (not 1 or n itself) and continue the recursion until such a depth as that there only numbers with no restricted divisors (prime numbers).
Thus if n is prime then hypersigma(n) is the same as sigma(n).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000 (first 1000 terms from Alonso del Arte)
FORMULA
a(n) = n + 1 <=> n is prime. - Bill McEachen, Aug 01 2023
EXAMPLE
a(12) = 64 since: the sum of the divisors of 12 is 28; to 28 we add 3 and 4 (corresponding to the prime divisors 2 and 3) bringing us up to 35; for 4 and 6 we continue the recursion, with 4 bringing us up to 45 and 6 brings up to 64.
MAPLE
a:= proc(n) option remember; uses numtheory;
sigma(n)+add(a(d), d=divisors(n) minus {1, n})
end:
seq(a(n), n=1..100); # Alois P. Heinz, Aug 01 2023
MATHEMATICA
hyperSigma[1] := 1; hyperSigma[n_] := hyperSigma[n] = Module[{d=Divisors[n]}, Total[d] + Total[hyperSigma /@ Rest[Most[d]]]]; Table[hyperSigma[n], {n, 100}] (* From T. D. Noe with a slight modification *)
CROSSREFS
Sequence in context: A247372 A143443 A139556 * A023896 A328711 A361655
KEYWORD
nonn,easy
AUTHOR
Alonso del Arte, May 26 2011
EXTENSIONS
Example corrected by Paolo P. Lava, Jul 13 2011
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 May 2 21:21 EDT 2024. Contains 372203 sequences. (Running on oeis4.)