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!)
A270970 Number of subsets of {1,...,n} with sum of elements equal to least common multiple of elements. 2
1, 2, 4, 5, 6, 8, 9, 11, 14, 16, 17, 21, 22, 24, 28, 31, 32, 37, 38, 53, 56, 57, 58, 71, 72, 73, 77, 85, 86, 131, 132, 138, 141, 142, 143, 163, 164, 165, 167, 289, 290, 310, 311, 316, 403, 404, 405, 454, 455, 458, 460, 463, 464, 478, 479, 557, 559, 560, 561 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Similar to A270875 but also counts singletons, the trivial solutions.
LINKS
FORMULA
a(n) = A270875(n) + n.
MATHEMATICA
Table[Length@ Select[Rest@ Subsets@ Range@ n, Total@ # == LCM @@ # &], {n, 22}] (* Michael De Vlieger, Mar 27 2016 *)
PROG
(PARI) a(n) = {nb = 0; S = vector(n, k, k); for (i = 0, 2^n - 1, ss = vecextract(S, i); if (sum(k=1, #ss, ss[k]) == lcm(ss), nb++); ); nb; }
CROSSREFS
Sequence in context: A189404 A316681 A161793 * A188092 A188080 A048262
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 27 2016
EXTENSIONS
a(31)-a(58) from Hiroaki Yamanouchi, Mar 30 2016
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 18 08:14 EDT 2024. Contains 371769 sequences. (Running on oeis4.)