A368491 a(n) is the integer whose bits designate the possible subset sums of the first n prime numbers.
1, 5, 45, 1453, 186285, 381681581, 3126736191405, 409827566090715053, 214867674970568857223085, 1802440697199513680253124870061, 967677980931418755473971539884090851245, 2078072640579877586820864371518464918573279084461, 285608128960093974754528418755948821932657172723113570336685
Offset: 0
Examples
For n = 0, there are no terms from which to calculate a subset sum. An empty array gives zero as the only possible sum. This is designated by the binary string 1 which has a value of 1 in base 10. For n = 2, sums of 0,2,3,5 are possible, yielding a binary string of 101101, which has a value of 45 in base 10. The impossibility of sums 1 and 4 is indicated by 0's in the binary string. For n = 3, the primes are 2,3,5 and their subset sums 0, 2, 3, 5, 7, 8, 10 are the positions of 1 bits in a(3) = 1453, 10 8 7 5 3 2 0 bit positions a(n) = 1 0 1 1 0 1 0 1 1 0 1 binary
Programs
-
Maple
a:= proc(n) option remember; `if`(n=0, 1, Bits[Or](a(n-1), a(n-1)*2^ithprime(n))) end: seq(a(n), n=0..15); # Alois P. Heinz, Mar 20 2025
-
Python
from primesieve import * n = 20 ps = generate_n_primes(n) res = 1 a = [] a.append(res) for v in ps: res = (res | (res << v)) a.append(res) print(a)
Formula
a(n) = a(n-1) BITOR a(n-1)*2^prime(n).
a(n) = 91*2^(A007504(n)-6) - 83 for n > 3.
Comments