login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111012 Primes in A002532. 0
2, 101, 1998541, 3366950329, 803128907400221, 16099934940822131461, 2279520764596558292681, 6469963748546758449049574741, 10900112859698650263468714158129, 707398563162966192697450635044051857198371361627935450689 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Starting with the fraction 1/1, generate the sequence of fractions A002533(i)/A002532(i) according to the rule: "add top and bottom to get the new bottom, add top and 6 times bottom to get the new top."
The prime denominators of these fractions are listed here, at locations i= 2, 5, 13, 19, 29, 37,.. 41, 53, 59, .... equalling prime(1), prime(26), prime(148838), ..
Is there an infinity of primes in this sequence?
REFERENCES
Prime Obsession, John Derbyshire, Joseph Henry Press, April 2004, p 16.
LINKS
FORMULA
A002532 INTERSECT A000040.
PROG
(PARI) primenum(n, k, typ) = \\ k=mult, typ=1 num, 2 denom. output prime num or denom.
{ local(a, b, x, tmp, v); a=1; b=1;
for(x=1, n, tmp=b; b=a+b; a=k*tmp+a; if(typ==1, v=a, v=b); if(isprime(v), print1(v", "); ) );
print(); print(a/b+.) }
CROSSREFS
Sequence in context: A028989 A113575 A173640 * A256516 A157066 A202740
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Oct 02 2005
EXTENSIONS
Simplified the definition, listed some A002532 indices - R. J. Mathar, Sep 16 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)