Aliquot Sequence Research  2.0
Compute properties of the sum-of-proper-divisors function.
bruteforce_kparent.h
Go to the documentation of this file.
1 
11 #ifndef POMYANG_KPARENT_INC_BRUTEFORCE_KPARENT_H_
12 #define POMYANG_KPARENT_INC_BRUTEFORCE_KPARENT_H_
13 
14 #include <stdint.h>
15 #include <stdlib.h>
16 
23 uint8_t *bf_kparent(size_t bound);
24 
31 uint64_t *bf_kparent_counts(size_t bound);
32 
33 #endif // POMYANG_KPARENT_INC_BRUTEFORCE_KPARENT_H_
bf_kparent_counts
uint64_t * bf_kparent_counts(size_t bound)
count number of even kparent numbers upto bound
Definition: bruteforce_kparent.c:54
bf_kparent
uint8_t * bf_kparent(size_t bound)
compute number of preimages for even number upto bound
Definition: bruteforce_kparent.c:24