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!)
A221977 Number of primes of the form (x+1)^7 - x^7 less than 10^n. 3
0, 0, 1, 1, 2, 3, 6, 7, 8, 10, 14, 18, 25, 34, 46, 60, 89, 120, 165, 227, 298, 415, 590, 821, 1152, 1606, 2240, 3188, 4438, 6208, 8714, 12280, 17368, 24560, 34821, 49413, 70581, 100856, 143955, 205291, 293061, 419256, 600213, 858870, 1230523, 1764914, 2532078 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Number of primes less than 10^n and equal to the difference of two consecutive seventh powers (x+1)^7 - x^7 = 7x(x+1)(x^2+x+1)^2+1 (A121618). Values of x = A121619 - 1. Sequence of number of primes less than 10^n and of the form (x+1)^7 - x^7 have similar characteristics to similar sequences for natural primes (A006880), cuban primes (A113478) and primes of the form (x+1)^5 - x^5 (A221846).
LINKS
MATHEMATICA
nn = 20; t = Table[0, {nn}]; n = 0; While[n++; p = (n + 1)^7 - n^7; p < 10^nn, If[PrimeQ[p], m = Ceiling[Log[10, p]]; t[[m]]++]]; Accumulate[t] (* T. D. Noe, Feb 04 2013 *)
CROSSREFS
Sequence in context: A064528 A366140 A179794 * A001162 A072685 A119960
KEYWORD
nonn,base
AUTHOR
Vladimir Pletser, Feb 02 2013
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 March 29 09:59 EDT 2024. Contains 371268 sequences. (Running on oeis4.)