OFFSET
1,1
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..1000
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
EXAMPLE
InvPhi(1024*31) = {39685,63496,79370,95244}, so a(11) = 4.
Observe that a(15) = 0 because 47 needs a very large 2^i multiplier (instead of 1024) to give a nonempty InvPhi set.
MAPLE
[seq(nops(invphi(1024*ithprime(i))), i=1..128)];
PROG
(PARI) a(n) = invphiNum(1024 * prime(n)); \\ Amiram Eldar, Nov 11 2024, using Max Alekseyev's invphi.gp
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Labos Elemer, May 30 2002
STATUS
approved