mersenneforum.org  

Go Back   mersenneforum.org > Factoring Projects > FactorDB

Reply
 
Thread Tools
Old 2018-03-02, 09:12   #1
enzocreti
 
Mar 2018

21B16 Posts
Default A suggestion for factordb.

I would suggest that factordb can detect the number of digits of a number , like PFGW can it with the len-command.

Last fiddled with by enzocreti on 2018-03-02 at 09:35
enzocreti is offline   Reply With Quote
Old 2020-12-19, 12:59   #2
sweety439
 
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36

47·79 Posts
Default

Other suggestions:

Operator "" for integer division (i.e. a\b = floor(a/b)) (FactorDB already has "%" for the modulo operator)
Operator "n!!" for double factorial of n
Operator "n!!!" for triple factorial of n
Operator "An" for n! - (n-1)! + (n-2)! - ... 1! (A005165(n))
Operator "Kn" for 1! + 2! + 3! + ... + n!
Operator "Bn" for Bell(n)
Operator "En" for Euler(n)
Operator "Cn" for Catalan(n)
Operator "W(m,n)" (Wolstenholme numbers) for the numerator of 1 + 1/(2^m) + 1/(3^m) + ... + 1/(n^m)
Operator "I(m,n)" for the n-th m-Fibonacci number (1, 2, 3, 4, 5, 6, ...)
Operator "J(m,n)" for the n-th m-step Fibonacci number (2, 3, 4, 5, 6, ...)
Operator "P(n)" for the n-th Perrin number
Operator "Phi(m,n)" for the m-th cyclotomic polynomial at n
Operator "R(m,n)" for the repunit in base m with length n
Operator "S(m,n)" for the concatenate the first n integers in base m

Also for the first n digits of (pi, e, sqrt(2), golden ratio, ln(2), gamma, ...) in base m

Last fiddled with by sweety439 on 2020-12-19 at 13:06
sweety439 is offline   Reply With Quote
Old 2020-12-23, 07:53   #3
LaurV
Romulan Interpreter
 
LaurV's Avatar
 
"name field"
Jun 2011
Thailand

24×643 Posts
Default

The guy was either trolling or brain farting (FDB displays the length of the number always, as a small index after the number, unless the number is too small).

But some of your suggestions are good (some other are futile, or step over the existent notations).
LaurV is offline   Reply With Quote
Old 2020-12-23, 18:00   #4
Stargate38
 
Stargate38's Avatar
 
"Daniel Jackson"
May 2011
14285714285714285714

769 Posts
Default

That would save a lot of typing:

(10^911)\(3^911) is shorter than (10^911-((10^911)%(3^911)))/3^911.
64!! would probably end up as 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000!, a number that's way too large for the DB. This is due to how the DB parses expressions. A better way of representing it would be n!2 for n!!, n!3 for n!!!, etc.
A109 is much shorter than 109!-108!+107!-...-24+6-2+1.
K109 is much shorter than 109!+108!+107!+...+24+6+2+1.
The Bell, Euler, Catalan, etc. functions would make it easier to add those numbers, if anyone wanted to do so.
Phi(1001,2) is much shorter than M1001/M143*M13/M91*M7*M11/M77.
R(314159,919) would definitely be easier to type than (314159^919-1)/314158
S(36,35) is definitely shorter than (6^72-1261)/1225 (See http://www.factordb.com/index.php?sh...685782&base=36 for proof of concatenation).
Stargate38 is offline   Reply With Quote
Old 2020-12-23, 18:15   #5
sweety439
 
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36

47·79 Posts
Default

Quote:
Originally Posted by Stargate38 View Post
That would save a lot of typing:

(10^911)\(3^911) is shorter than (10^911-((10^911)%(3^911)))/3^911.
64!! would probably end up as 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000!, a number that's way too large for the DB. This is due to how the DB parses expressions. A better way of representing it would be n!2 for n!!, n!3 for n!!!, etc.
A109 is much shorter than 109!-108!+107!-...-24+6-2+1.
K109 is much shorter than 109!+108!+107!+...+24+6+2+1.
The Bell, Euler, Catalan, etc. functions would make it easier to add those numbers, if anyone wanted to do so.
Phi(1001,2) is much shorter than M1001/M143*M13/M91*M7*M11/M77.
R(314159,919) would definitely be easier to type than (314159^919-1)/314158
S(36,35) is definitely shorter than (6^72-1261)/1225 (See http://www.factordb.com/index.php?sh...685782&base=36 for proof of concatenation).
I wanted to compute the list of factorization of Phi(n,2) for all 1<=n<=3000 in 5 years ago (the Cunningham list only lists n<=1300, only Phi(n,10) has such big list), but FactorDB does not support the Phi (cyclotomic polynomial) function
sweety439 is offline   Reply With Quote
Old 2020-12-23, 18:23   #6
sweety439
 
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36

371310 Posts
Default

There are also many types of numbers to factorize, which cannot be simply typed in factorDB, unlike the formula (a*b^n+c)/d (near-repdigit numbers and quasi-repdigit numbers in base b)

I think that we can use Q(n) for part(n) (since P(n) is already used for Perrin numbers), and use D(n) for distinctpart(n)

Also, currently factorDB only supports Fibonacci numbers I(n) and Lucas numbers L(n), but not support the Fibonacci polynomial (we may use I(m,n) for the n-th Fibonacci polynomial evaluated at m, which is the same as the n-th m-Fibonacci number, e.g. for m=2, this is the n-th Pell number, and for m=3, this is A006190(n)) (I think that we can even use U(P,Q,n) and V(P,Q,n) for the n-th number in Lucas sequences), factorDB also not supports tribonacci numbers, tetracci numbers, etc.

Last fiddled with by sweety439 on 2020-12-23 at 18:30
sweety439 is offline   Reply With Quote
Old 2021-01-05, 10:33   #7
LaurV
Romulan Interpreter
 
LaurV's Avatar
 
"name field"
Jun 2011
Thailand

24×643 Posts
Default

Quote:
Originally Posted by Stargate38 View Post
64!! would probably end up as 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000!, a number that's way too large for the DB.
You are very confused about what "double factorial" means. Google it.

64!! = 1130138339199322632554990773529330319360000000
You can get it in pari with "prod(x=1,32,2*x)".
LaurV is offline   Reply With Quote
Old 2021-01-05, 14:45   #8
Dr Sardonicus
 
Dr Sardonicus's Avatar
 
Feb 2017
Nowhere

24·3·7·19 Posts
Default

Quote:
Originally Posted by LaurV View Post
Quote:
Originally Posted by Stargate38 View Post
64!! would probably end up as 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000!, a number that's way too large for the DB.
You are very confused about what "double factorial" means. Google it.

64!! = 1130138339199322632554990773529330319360000000
You can get it in pari with "prod(x=1,32,2*x)".
Hmm, I must have forgotten the "double factorial" notation. I know they've been discussed on the Forum, a "multifactorial" generalization also.

For iterated factorials, use parentheses. The factorial of 64! is (64!)!. It's too big for me to want to calculate exactly. I'll content myself with its natural logarithm. Even for the logarithm, I have to bump up the real precision from its default of 38.

Code:
? n=64!
%1 = 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000

? default(realprecision,150)
%2 = 150

? lngamma(n+1)
%3 = 25906276482267964036342506230950052158110911566157592844228132441739611236380625962625795073.4807460213107849024090809743801213248377167429072675193492
Dr Sardonicus is offline   Reply With Quote
Old 2021-01-05, 15:59   #9
sweety439
 
"99(4^34019)99 palind"
Nov 2016
(P^81993)SZ base 36

371310 Posts
Default

The workers in factordb can only:

* Factoring numbers <70 digits
* Proving probable primes <300 digits
* Checking the smallest number with status unknown <20000 digits

For the number factoring, it can also factor numbers <100 digits but not immediately (I do not know about it, maybe somebody factored these numbers, like that maybe somebody assign the first numbers >=20000 digits to worker to test their (probable)-primality)

However, in 2010, they can prove probable primes <1000 digits (see https://web.archive.org/web/20100921...com/status.php)

I hope that factordb can:

* Factoring numbers <100 digits
* Proving probable primes <2500 digits
* Checking the smallest number with status unknown <50000 digits

Is this possible?
sweety439 is offline   Reply With Quote
Old 2021-01-05, 17:57   #10
VBCurtis
 
VBCurtis's Avatar
 
"Curtis"
Feb 2005
Riverside, CA

7·829 Posts
Default

Go ahead and do it- you know it's users doing those factoring jobs and proving those prps, right?

Become that user. Download composites, factor them, upload the factors. Or run Primo proofs for any prps you wish were proven.

Yes, really. You.
VBCurtis is offline   Reply With Quote
Old 2021-01-05, 19:49   #11
MisterBitcoin
 
MisterBitcoin's Avatar
 
"Nuri, the dragon :P"
Jul 2016
Good old Germany

37816 Posts
Default

Quote:
Originally Posted by sweety439 View Post
I hope that factordb can:

* Factoring numbers <100 digits
* Proving probable primes <2500 digits
* Checking the smallest number with status unknown <50000 digits

Is this possible?



MisterBitcoin is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Other Factordb Problems wblipp FactorDB 625 2023-05-30 22:03
Extending Factordb carpetpool FactorDB 6 2017-01-23 11:04
FactorDB PRP's smh FactorDB 231 2015-07-28 02:30
Automatically updating factordb chris2be8 FactorDB 9 2012-05-03 10:20
FactorDB question Raman Factoring 15 2010-01-28 10:24

All times are UTC. The time now is 04:11.


Sun Jun 4 04:11:25 UTC 2023 up 290 days, 1:39, 0 users, load averages: 1.63, 1.68, 1.35

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.

≠ ± ∓ ÷ × · − √ ‰ ⊗ ⊕ ⊖ ⊘ ⊙ ≤ ≥ ≦ ≧ ≨ ≩ ≺ ≻ ≼ ≽ ⊏ ⊐ ⊑ ⊒ ² ³ °
∠ ∟ ° ≅ ~ ‖ ⟂ ⫛
≡ ≜ ≈ ∝ ∞ ≪ ≫ ⌊⌋ ⌈⌉ ∘ ∏ ∐ ∑ ∧ ∨ ∩ ∪ ⨀ ⊕ ⊗ 𝖕 𝖖 𝖗 ⊲ ⊳
∅ ∖ ∁ ↦ ↣ ∩ ∪ ⊆ ⊂ ⊄ ⊊ ⊇ ⊃ ⊅ ⊋ ⊖ ∈ ∉ ∋ ∌ ℕ ℤ ℚ ℝ ℂ ℵ ℶ ℷ ℸ 𝓟
¬ ∨ ∧ ⊕ → ← ⇒ ⇐ ⇔ ∀ ∃ ∄ ∴ ∵ ⊤ ⊥ ⊢ ⊨ ⫤ ⊣ … ⋯ ⋮ ⋰ ⋱
∫ ∬ ∭ ∮ ∯ ∰ ∇ ∆ δ ∂ ℱ ℒ ℓ
𝛢𝛼 𝛣𝛽 𝛤𝛾 𝛥𝛿 𝛦𝜀𝜖 𝛧𝜁 𝛨𝜂 𝛩𝜃𝜗 𝛪𝜄 𝛫𝜅 𝛬𝜆 𝛭𝜇 𝛮𝜈 𝛯𝜉 𝛰𝜊 𝛱𝜋 𝛲𝜌 𝛴𝜎𝜍 𝛵𝜏 𝛶𝜐 𝛷𝜙𝜑 𝛸𝜒 𝛹𝜓 𝛺𝜔