login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A054892 Smallest prime a(n) such that the sum of n consecutive primes starting with a(n) is divisible by n. 4
2, 3, 3, 5, 71, 5, 7, 17, 239, 13, 29, 5, 43, 23, 5, 5, 7, 7, 79, 17, 47, 11, 2, 73, 97, 53, 271, 13, 263, 23, 41, 61, 97, 101, 181, 41, 47, 13, 233, 13, 53, 13, 359, 151, 71, 61, 239, 73, 443, 859, 29, 131, 2, 61, 313, 101, 19, 151, 521, 3, 571, 31, 7, 79, 109, 97, 53 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

See A132809 for another version.

In accidental cases (n=1,2,25,..), like a(25)=97, the sum of 25 consecutive primes starts with the 25th prime and is divided by 25: Sum=97+...+227=3925=25*157

FORMULA

Min[q_1; Sum[q_i; {i, 1, n}]]=n*X], q_i is a prime (rarely only q_i=Prime[i])

EXAMPLE

n=1: a(1)=2 and 2 is divisible by 1.

n=3: a(3)=3 and 3+5+7=15=3*5.

n=8: a(8)=17 and 17+19+23+29+31+37+41+43=240=8*30

MATHEMATICA

f[n_] := Block[{k = 1, t}, While[t = Table[Prime[i], {i, k, k + n - 1}]; Mod[Plus @@ t, n] > 0, k++ ]; t]; First /@ Table[f[n], {n, 67}] (*Chandler*)

CROSSREFS

Cf. A054643, A024672, A034961, A077388, A077389, A122820, A132809.

Sequence in context: A154695 A154646 A046826 * A104570 A071915 A021432

Adjacent sequences:  A054889 A054890 A054891 * A054893 A054894 A054895

KEYWORD

nonn

AUTHOR

Labos E. (labos(AT)ana.sote.hu), May 23 2000

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 08:44 EST 2012. Contains 205998 sequences.