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!)
A109653 Sequence and first differences include all prime numbers exactly once. 1
2, 5, 12, 23, 36, 53, 72, 101, 132, 169, 210, 253, 300, 359, 420, 487, 558, 631, 710, 793, 882, 979, 1082, 1189, 1298, 1411, 1538, 1669, 1806, 1945, 2094, 2245, 2402, 2565, 2732, 2905, 3084, 3265, 3456, 3649, 3846, 4045, 4256, 4479, 4706, 4935, 5168, 5407 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Sequence and first differences:
2 5 12 23 36 53 72 101 132 169 210 253 300 359 420...
.3.7.11.13.17.19.29...31..37..41..43..47..59..61...
LINKS
EXAMPLE
All prime numbers appear once and only once, either in the sequence itself or in the first differences.
MATHEMATICA
NextPrim[n_] := Block[{k = n + 1}, While[ !PrimeQ[k], k++ ]; k]; a = {1}; d = 3; k = 2; Do[ While[ Position[a, d] != {}, d += 2 ]; k = k + d; d = NextPrim[d]; a = Append[a, k], {n, 47} ]; a (* Robert G. Wilson v *)
CROSSREFS
Sequence in context: A326762 A116711 A247658 * A115520 A116735 A096376
KEYWORD
base,easy,nonn
AUTHOR
Eric Angelini, Aug 30 2005
EXTENSIONS
More terms from Robert G. Wilson v, Sep 28 2005
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 April 23 12:08 EDT 2024. Contains 371912 sequences. (Running on oeis4.)