Daniel Șuteu
Daniel Șuteu
I recently got the following message from the YouTube API Services team: > Dear YouTube API Developer, > > For your use of YouTube API Services, we have sent multiple...
Hi, If it's possible, please consider adding support for changing the default I/O scheduler on this device: ```console u0_a53@android:/ $ cd /sys/block u0_a53@android:/sys/block $ ls -l lrwxrwxrwx root root 2017-01-16...
Iterating over k-almost primes in a given range [A,B], when A and B are quite large, seems to be quite slow. But it can be made much faster! :) Example:...
Hi. I tested the latest GitHub commit of `Math::Prime::Util` on a 32-bit Android phone, using the [Termux](https://termux.com/) environment and the `clang` compiler. Unfortunately, some tests failed:    ...
Hi. I would like to suggest a new function, called `inverse_sigma(n,k=1)`, which returns a list with all the solutions `x` that satisfy `sigma_k(x) = n`. Similar in functionality to `inverse_totient(n)`....
If not sure if it's possible, but it would be nice to support passing command line arguments to Perl scripts. Example: ``` bash $ rperl script.pl --arg ``` Currently, it...
For example, the following command takes about 10 seconds on my system: ```console time perl -Mntheory=:all -E 'use bigint; say prime_count(2**63 - 10, 2**63 + 1000)' ``` However, getting the...
### Checklist - [X] I made sure that there are *no existing issues* - [open](https://github.com/TeamNewPipe/NewPipe/issues) or [closed](https://github.com/TeamNewPipe/NewPipe/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to. - [X] I'm aware that...
[feature request] Sieve for primes in linear forms: `a_1*m + b_1`, `a_2*m + b_2`, ..., `a_k*m + b_k`
Would be nice to have an efficient sieve that takes a list of parameters `[a_1, b_1]`, `[a_2, b_2]`, ..., `[a_k, b_k]` and finds values of `m` in a given range...