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!)
A334901 Infinitary practical numbers: numbers m such that every number 1 <= k <= isigma(m) is a sum of distinct infinitary divisors of m, where isigma is A049417. 5
1, 2, 6, 8, 24, 30, 40, 42, 54, 56, 66, 72, 78, 88, 104, 120, 128, 168, 210, 216, 264, 270, 280, 312, 330, 360, 378, 384, 390, 408, 440, 456, 462, 480, 504, 510, 520, 546, 552, 570, 594, 600, 616, 640, 672, 680, 690, 696, 702, 714, 728, 744, 750, 760, 792, 798 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Includes the powers of 2 of the form 2^(2^k - 1) for k = 0, 1, ... (A058891). The other terms are a subset of infinitary abundant numbers (A129656) and infinitary pseudoperfect numbers (A306983).
LINKS
MATHEMATICA
bin[n_] := 2^(-1 + Position[Reverse @ IntegerDigits[n, 2], _?(# == 1 &)] // Flatten); f[p_, e_] := p^bin[e]; icomp[n_] := Flatten[f @@@ FactorInteger[n]]; fun[p_, e_] := Module[{b = IntegerDigits[e, 2]}, m = Length[b]; Product[If[b[[j]] > 0, 1 + p^(2^(m - j)), 1], {j, 1, m}]]; isigma[1] = 1; isigma[n_] := Times @@ fun @@@ FactorInteger[n]; infPracQ[n_] := Module[{f, p, e, prod = 1, ok = True}, If[n < 1 || (n > 1 && OddQ[n]), False, If[n == 1, True, r = Sort[icomp[n]]; Do[If[r[[i]] > 1 + isigma[prod], ok = False; Break[]]; prod = prod*r[[i]], {i, Length[r]}]; ok]]]; Select[Range[1000], infPracQ]
CROSSREFS
The infinitary version of A005153.
Sequence in context: A340810 A334898 A081957 * A279732 A260669 A122758
KEYWORD
nonn
AUTHOR
Amiram Eldar, May 16 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 April 23 05:16 EDT 2024. Contains 371906 sequences. (Running on oeis4.)