|
| |
|
|
A027763
|
|
Smallest k such that 2^^n is not congruent to 2^^(n-1) mod k, where 2^^n denotes the power tower 2^2^...^2 (in which 2 appears n times).
|
|
0
| |
|
|
2, 3, 5, 11, 23, 47, 283, 719, 1439, 2879, 34549, 138197, 531441, 1594323
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| This sequence shares many terms with A056637, the least prime of class n-. Note that 3^(n-1) is an upper bound for each term and the upper bound is reached for n=12 and n=13. Are all subsequent terms 3^(n-1)? The Mathematica code uses the TowerMod function in the CRT package, which is described in the book by Bressoud and Wagon. [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
|
|
|
REFERENCES
| Stan Wagon (WAGON(AT)macalester.edu), posting to Problem of the Week mailing list, Dec 15 1997.
David Bressoud and Stan Wagon, A Course in Computational Number Theory, Key College Pub., 2000, p. 96. [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
|
|
|
LINKS
| Stan Wagon, Putnam Problem Notes [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
Eric W. Weisstein, MathWorld: Power Tower [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
|
|
|
EXAMPLE
| 2^^2=2^2=4 and 2^^3=2^2^2=16. We find 4 = 16 (mod k) until k=5. So a(3)=5. [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
|
|
|
MATHEMATICA
| Needs["CRT`"]; k=1; Table[While[TowerMod[2, n, k]==TowerMod[2, n-1, k], k++ ]; k, {n, 10}] [From T. D. Noe (noe(AT)sspectra.com), Mar 13 2009]
|
|
|
CROSSREFS
| Sequence in context: A079848 A073434 A162278 * A173927 A176499 A175234
Adjacent sequences: A027760 A027761 A027762 * A027764 A027765 A027766
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| R. K. Guy (rkg(AT)cpsc.ucalgary.ca)
|
|
|
EXTENSIONS
| Improved the name and changed the offset because I just prepended a term T. D. Noe (noe(AT)sspectra.com), Mar 13 2009
Corrected and extended by T. D. Noe (noe(AT)sspectra.com), Mar 13 2009
|
| |
|
|