|
Search: id:A092836
|
|
|
| A092836 |
|
Prime tribonacci numbers. |
|
+0 3
|
|
| 2, 7, 13, 149, 19341322569415713958901, 15762679542071167858843489, 145082467753351661438130501937754420584096000083183992629
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The next term is too large to fit.
|
|
REFERENCES
|
Tony D. Noe and Jonathan Vos Post, Primes in Fibonacci n-step and Lucas n-step Sequences, Journal of Integer Sequences, Vol. 8 (2005), Article 05.4.4.
|
|
LINKS
|
Harry J. Smith, Table of n, a(n) for n=1,...,8
Eric Weisstein's World of Mathematics, Tribonacci Number
|
|
PROGRAM
|
(PARI) t(m)= { if (m==0, return(a1)); if (m==1, return(a2)); if (m==2, return(a3)); r = a1 + a2 + a3; a1=a2; a2=a3; a3=r; return(r); } { a1=0; a2=1; a3=1; n=0; for (m=0, 1000, a=t(m); if (isprime(a), write("b092836.txt", n++, " ", a))); } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jun 21 2009]
|
|
CROSSREFS
|
Cf. A000073, A092835.
Sequence in context: A072060 A106912 A099629 this_sequence A102152 A102156 A102151
Adjacent sequences: A092833 A092834 A092835 this_sequence A092837 A092838 A092839
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Eric Weisstein (eric(AT)weisstein.com), Mar 06, 2004
|
|
|
Search completed in 0.002 seconds
|