OFFSET
1,2
COMMENTS
As also noticed by T. D. Noe, for odd n: 2 | a(n), for even n: (n+1)^2 | a(n). Coincidentally, a(74) includes 13 multidigit prime factors all of which end with the digit 1. There is no upper limit to this sequence, which rapidly becomes slow to compute. The derived sequences of n such that a(n) = k for any constant k > 2 do not yet appear in the OEIS. For instance, a(n) = 3 for n = 4, 5, 7, 9, 15, 18, 31, ... Is each such derived sequence finite?
FORMULA
EXAMPLE
a(1) = 1 because 1+1^2 = 2 is prime (and the only such prime).
a(2) = 2 because 1 + 2^3 = 9 = 3^2 which has (with multiplicity) two prime factors.
a(3) = 2 because 1 + 3^4 = 82 = 2 * 41 (the last such semiprime?).
a(4) = 3 because 1 + 4^5 = 1025 = 5^2 * 41 which has (with multiplicity) 3 prime factors.
a(8) = 6 because 1 + 8^9 = 134217729 = 3^4 * 19 * 87211.
a(14) = 9 because 1 + 14^15 = 155568095557812225 = 3^2 * 5^2 * 61 * 71 * 101 * 811 * 1948981.
a(1000) > 52.
PROG
(PARI) a(n) = bigomega(1+(n^(n+1))) \\ Georg Fischer, Jun 21 2024
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Sep 14 2005
EXTENSIONS
a(13) and 3 other terms corrected by Georg Fischer, Jun 21 2024
STATUS
approved