cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Previous Showing 31-40 of 93 results. Next

A232865 Primes p such that the average of the seventh power of primes up to p is an integer.

Original entry on oeis.org

2, 97, 14293, 247997, 7979737, 15749303, 344468591, 25934255929, 40224745543, 16495569405383, 53941465463489, 84897825837611, 244949151647509, 757938163218799, 1594375071689591, 1674528348898463, 5347819657753523, 6152744788157173, 47008163075851819
Offset: 1

Views

Author

M. F. Hasler, Dec 01 2013

Keywords

Comments

Otherwise said, prime(m) such that m divides prime(1)^7 + ... + prime(m)^7.
a(17) > 1877564517734839. - Bruce Garner, Aug 30 2021
a(18) > 5493145969370039. - Paul W. Dyson, Mar 02 2022
a(19) > 6728882502496787. - Bruce Garner, Sep 18 2022

Crossrefs

Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).

Programs

  • PARI
    S=n=0;forprime(p=1,,(S+=p^7)%n++||print1(p","))

Formula

a(n) = prime(A125826(n)).

Extensions

a(10) from Paul W. Dyson, Jan 05 2021
a(11)-a(12) from Bruce Garner, Feb 26 2021
a(13) from Bruce Garner, Mar 23 2021
a(14) from Bruce Garner, May 19 2021
a(15)-a(16) from Bruce Garner, Aug 30 2021
a(17) from Paul W. Dyson, Mar 02 2022
a(18) from Bruce Garner, Sep 18 2022
a(19) from Paul W. Dyson, Jan 17 2024

A236182 Sum of the sixth powers of the first n primes.

Original entry on oeis.org

64, 793, 16418, 134067, 1905628, 6732437, 30870006, 77915887, 225951776, 820775097, 1708278778, 4274005187, 9024109428, 15345472477, 26124687806, 48289048935, 90469582576, 141989956937, 232448339106, 360548623027, 511882849316, 754970304837, 1081910678206
Offset: 1

Views

Author

Robert Price, Jan 19 2014

Keywords

Crossrefs

Cf. A030516 (6th powers of primes).
Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).

Programs

  • Mathematica
    Table[Sum[Prime[k]^6, {k, n}], {n, 100}]
    Accumulate[Prime[Range[30]]^6] (* Harvey P. Dale, Oct 29 2023 *)
  • PARI
    a(n) = sum(k=1, n, prime(k)^6); \\ Michel Marcus, Mar 01 2022

Formula

a(n) = Sum_{k = 1..n} prime(k)^6.

A128167 Numbers k such that k divides 1 + Sum_{j=1..k} prime(j)^3 = 1 + A098999(k).

Original entry on oeis.org

1, 2, 4, 5, 6, 10, 12, 14, 55, 82, 87, 935, 973, 1168, 1181, 1457, 5457, 7372, 11250, 17978, 25664, 182717, 472931, 2385026, 3002594, 9249715, 21843515, 37468158, 64403264, 87803374, 140933482, 281907048, 342460116, 1543515106, 1995156064
Offset: 1

Views

Author

Alexander Adamchuk, Feb 22 2007, Feb 23 2007

Keywords

Comments

a(55) > 2.2*10^14. - Bruce Garner, Mar 28 2022

Crossrefs

Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.

Programs

  • Mathematica
    k = 0; s = 1; p = 2; lst = {}; While[k < 516862000, s = s + p^3; If[Mod[s, ++k] == 0, AppendTo[lst, k]; Print[{k, p}]]; p = NextPrime@ p]; lst

Extensions

Four more terms from Sean A. Irvine, Jan 19 2011
a(32) & a(33) from Robert G. Wilson v
a(34)-a(35) from Robert Price, Dec 16 2013

A128170 Numbers k such that k divides 1 + Sum_{j=1..k} prime(j)^6.

Original entry on oeis.org

1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 18, 21, 24, 27, 28, 29, 34, 36, 42, 45, 48, 54, 56, 63, 72, 84, 112, 126, 159, 168, 174, 198, 204, 216, 252, 310, 312, 336, 360, 400, 408, 441, 504, 505, 540, 588, 591, 657, 672, 716, 864, 900, 1080, 1152, 1316, 1350, 1380, 1680, 1722
Offset: 1

Views

Author

Alexander Adamchuk, Feb 22 2007

Keywords

Comments

a(301) > 1.4*10^13. - Bruce Garner, Apr 07 2021

Crossrefs

Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).

Programs

  • Mathematica
    s = 1; Do[s = s + Prime[n]^6; If[ Mod[s, n] == 0, Print[n]], {n, 10000}]
    Module[{nn=1750,pr},pr=Accumulate[Prime[Range[nn]]^6];Select[Thread[ {Range[ nn],pr}],Divisible[#[[2]]+1,#[[1]]]&]][[All,1]] (* Harvey P. Dale, Feb 10 2019 *)
  • PARI
    n=0; s=1; forprime(p=2,,s+=p^6; if(s%n++==0, print1(n", "))) \\ Charles R Greathouse IV, Dec 03 2013

A128171 Numbers k such that k divides 1 + Sum_{j=1..k} prime(j)^7.

Original entry on oeis.org

1, 2, 4, 5, 6, 10, 12, 46, 1830, 2086, 6000, 7681, 8242, 15204, 43698, 52054, 154490, 211052, 392767, 4309540, 6452151, 8773101, 15166410, 26552623, 176656106, 180281161, 568507964, 608235488, 620790480, 1053296976, 1627363527, 3740702866, 20254119186
Offset: 1

Views

Author

Alexander Adamchuk, Feb 22 2007, Feb 23 2007

Keywords

Comments

a(43) > 1.4*10^13. - Bruce Garner, Apr 07 2021

Crossrefs

Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.

Programs

  • Mathematica
    s = 1; Do[s = s + Prime[n]^7; If[ Mod[s, n] == 0, Print[n]], {n, 1000000}]

Extensions

More terms from Sean A. Irvine, Jan 18 2011
a(27)-a(35) from Robert Price, Dec 03 2013

A131273 Numbers k that divide Sum_{j=1..k} prime(j)^13.

Original entry on oeis.org

1, 23, 299, 313, 171287, 435705, 487475, 3774601, 219347813, 9613155161, 5150163868035, 37365789554345, 228914067371295
Offset: 1

Views

Author

Alexander Adamchuk, Jun 25 2007

Keywords

Comments

a(13) > 4*10^13. - Bruce Garner, Aug 30 2021
a(14) > 5*10^14. - Paul W. Dyson, Dec 06 2024

Crossrefs

Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.

Programs

  • Mathematica
    s = 0; Do[s = s + Prime[n]^13; If[ Mod[s, n] == 0, Print[n]], {n, 200000}]
  • PARI
    S=n=0;forprime(p=1,,(S+=p^13)%n++||print1(n",")) \\ M. F. Hasler, Dec 01 2013

Extensions

a(6)-a(8) from Robert G. Wilson v, Jun 30 2007
a(9)-a(10) from Robert Price, Nov 28 2013
a(11) from Bruce Garner, Mar 23 2021
a(12) from Bruce Garner, Aug 30 2021
a(13) from Paul W. Dyson, Apr 20 2023

A223939 Integer averages of first k primes cubed for some k (a(n) = A223937(n)/A122140(n)).

Original entry on oeis.org

8, 187858, 13080918308, 26871014202, 29988975981350, 773478679579793136, 8923646993118036400, 545048444084018901462938808502760, 22049455928935679528789623492181708, 180819643079146957138056211903672348
Offset: 1

Views

Author

Robert Price, Mar 29 2013

Keywords

Examples

			The integer, 187858 is the average of the first 25 primes^3 (4696450/25=187858).
		

Crossrefs

Cf. A085450 (smallest m > 1 that divides Sum_{k=1..m} prime(k)^n).

A224084 a(n) is the sum of the first A122142(n) primes.

Original entry on oeis.org

32, 29014217650, 1402410522779408458962, 242700813972473727979856438, 39801461997088304647457657686237500, 34660028355420445358269199690982103830, 449313345166550298019555516465462404833615242, 521622464603890911352361262823355004060722502
Offset: 1

Views

Author

Robert Price, Mar 30 2013

Keywords

Comments

a(15) > 396037728209314158966816617669123060098902457685060543657534165383\
2287251689417. - Paul W. Dyson, Jan 04 2021
a(16) > 741988146562261280623405653926334331812789175312248159249998073717\
183180285452620103675. - Bruce Garner, May 09 2021
a(17) > 829476776252760811662536439998983292156543518510986088858270226839\
9456611816755432572891181. - Paul W. Dyson, Feb 04 2022

Crossrefs

Cf. A085450 = smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n.

A224087 Integer averages of first k primes to the fifth power for some k (A224083/A122142).

Original entry on oeis.org

32, 1160568706, 1675520337848755626, 47319324229376823548422, 421737345664511837324054650980, 127677705617374045855890076772262, 125639284519521689545001188816411980826, 142455227153563701959237947286559180978
Offset: 1

Views

Author

Robert Price, Mar 30 2013

Keywords

Examples

			The integer, 1160568706 is the average of p^5 for the first 25 primes p (29014217650/25 = 1160568706); 25 being A085450(5).
		

Crossrefs

A232733 Prime(m), where m is such that (Sum_{i=1..m} prime(i)^6) / m is an integer.

Original entry on oeis.org

2, 41647, 3197891, 630397289, 779089704751, 3819383648849, 44041722668737, 1322879640047263, 9863536132182127, 16069251644649407, 32520030920151967
Offset: 1

Views

Author

Robert Price, Dec 02 2013

Keywords

Comments

The primes correspond to indices n = 1, 4357, 230065, 32826947, 29578097627 = A125825.
a(12) > 3.7*10^16. - Paul W. Dyson, Jan 17 2025

Examples

			a(2) = 41647, because 41647 is the 4357th prime and the sum of the first 4357 primes^6 = 2952411812082729747782733271068 when divided by 4357 equals 677624928180566845945084524 which is an integer.
		

Crossrefs

Cf. A085450 (smallest m > 1 such that m divides Sum_{k=1..m} prime(k)^n).

Programs

  • Mathematica
    t = {}; sm = 0; Do[sm = sm + Prime[n]^6; If[Mod[sm, n] == 0, AppendTo[t, Prime[n]]], {n, 100000}]; t (* Derived from A217599 *)
  • PARI
    is(n)=if(!isprime(n),return(0)); my(t=primepi(n),s); forprime(p=2,n,s+=Mod(p,t)^6); s==0 \\ Charles R Greathouse IV, Nov 30 2013
    
  • PARI
    S=n=0;forprime(p=1,,(S+=p^6)%n++||print1(p",")) \\ M. F. Hasler, Dec 01 2013

Formula

a(n) = prime(A125828(n)).

Extensions

a(6) from Bruce Garner, Jul 10 2021
a(7) from Paul W. Dyson, Jan 08 2021
a(8) from Bruce Garner, Jul 10 2021
a(9) from Paul W. Dyson, Oct 21 2022
a(10) from Paul W. Dyson, Oct 31 2022
a(11) from Paul W. Dyson, Dec 08 2022
Previous Showing 31-40 of 93 results. Next