OFFSET
2,1
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 2..65, 65 = 2*3*11-1
EXAMPLE
To find a(14) we first find the distinct prime factors of 14 which are 2 and 7, which leads to a(14)=2^7=128.
To find a(8) we find 8's prime factors, 8=2*2*2, the distinct prime factor is 2 therefore a(8)=2.
30 has 3 distinct prime factors {2,3,5}, so a(30)=2^(3^5)=14134776518227074636666380005943348126619871175004951664972849610340958208.
PROG
(Haskell)
a248012 = foldr1 (^) . a027748_row -- Reinhard Zumkeller, Sep 29 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Talha Ali, Sep 29 2014
STATUS
approved