Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A114871 Numbers of the form (p-1)p^k (where p is a prime and k>=0) in ascending order. 7
1, 2, 4, 6, 8, 10, 12, 16, 18, 20, 22, 28, 30, 32, 36, 40, 42, 46, 52, 54, 58, 60, 64, 66, 70, 72, 78, 82, 88, 96, 100, 102, 106, 108, 110, 112, 126, 128, 130, 136, 138, 148, 150, 156, 162, 166, 172, 178, 180, 190, 192, 196, 198, 210, 222, 226, 228, 232, 238, 240, 250 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
These numbers play a crucial role in inverting Euler's totient function.
LINKS
S. Contini, E. Croot, I. E. Shparlinski, Complexity of Inverting the Euler Function, arXiv:math/0404116 [math.NT], 2004.
EXAMPLE
18 is an element of the sequence because 18=(3-1)3^2 and 3 is a prime.
MAPLE
N:= 1000: # for terms <= N
S:= {}: R:= NULL:
p:= 1:
while p <= N do
p:= nextprime(p);
S:= S union {seq((p-1)*p^k, k = 0..ilog[p](N/(p-1)))};
R:= R, seq((p-1)*p^k, k = 0..ilog[p](N/(p-1)))
od:
sort(convert(S, list)); # Robert Israel, Feb 10 2021
MATHEMATICA
Take[Union@ Flatten@ Table[(Prime[n] - 1)Prime[n]^k, {n, 60}, {k, 0, 7}], 61] (* Robert G. Wilson v, Jan 05 2006 *)
CROSSREFS
Sequence in context: A076450 A097379 A371288 * A085150 A051178 A093891
KEYWORD
nonn
AUTHOR
Franz Vrabec, Jan 03 2006
EXTENSIONS
More terms from Robert G. Wilson v, Jan 05 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 18 17:05 EDT 2024. Contains 375269 sequences. (Running on oeis4.)