A Math Question
Moderator: Alyrium Denryle
A Math Question
Is there any function governing the distribution of primes in the basic fibonacci sequence? {1, 1, 2, 4, 5, 8, 13, ...}
A Government founded upon justice, and recognizing the equal rights of all men; claiming higher authority for existence, or sanction for its laws, that nature, reason, and the regularly ascertained will of the people; steadily refusing to put its sword and purse in the service of any religious creed or family is a standing offense to most of the Governments of the world, and to some narrow and bigoted people among ourselves.
F. Douglass
-
- Redshirt
- Posts: 42
- Joined: 2005-04-24 10:34am
Well, (and you won't like this answer) yes, there is, only because any 1-1 (injective) relation is a function. So I could define the function fib_prime:N->N (which goes from the naturals to the naturals)
fib_prime(1) = 1
fib_prime(2) = 1
fib_prime(3) = 3
fib_prime(4) = 13
etc.
However, what you probably wanted to know is "Is there a closed form function ...", to which I suspect the answer is no.
To give an example, here is a function
fake_squared (1) = 1
fake_squared (2) = 4
fake_squared (3) = 9
fake_squared (4) = 16
etc
which is not the same as
f(x) = x^2
because fake_squared(5) might equal something other than 25, for example.
fib_prime(1) = 1
fib_prime(2) = 1
fib_prime(3) = 3
fib_prime(4) = 13
etc.
However, what you probably wanted to know is "Is there a closed form function ...", to which I suspect the answer is no.
To give an example, here is a function
fake_squared (1) = 1
fake_squared (2) = 4
fake_squared (3) = 9
fake_squared (4) = 16
etc
which is not the same as
f(x) = x^2
because fake_squared(5) might equal something other than 25, for example.
Heh. Silly me, with imprecise wording.NPComplete wrote:However, what you probably wanted to know is "Is there a closed form function ..."
Yes, that is what I wanted to know.
More generally, is there a way we can figure out the distribution of primes within the fibonacci sequence?
A Government founded upon justice, and recognizing the equal rights of all men; claiming higher authority for existence, or sanction for its laws, that nature, reason, and the regularly ascertained will of the people; steadily refusing to put its sword and purse in the service of any religious creed or family is a standing offense to most of the Governments of the world, and to some narrow and bigoted people among ourselves.
F. Douglass
- Kuroneko
- Jedi Council Member
- Posts: 2469
- Joined: 2003-03-13 03:10am
- Location: Fréchet space
- Contact:
There is no known way to do that. Actually, it is even worse, as it is not even known whether or not there is a finite or infinite amount of Fibonacci primes, much less how they are distributed.Surlethe wrote:More generally, is there a way we can figure out the distribution of primes within the fibonacci sequence?