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.

Showing 1-3 of 3 results.

A174722 Slowest increasing sequence of odd primes such that the partial sums of the sequence from the second on are perfect powers.

Original entry on oeis.org

3, 5, 17, 103, 233, 1367, 1753, 2351, 7393, 19543, 20593, 46639, 54449, 284527, 344249, 407791, 512009, 812431, 844433, 1214407, 1316033, 2109671, 2233601, 11251351, 11267777, 13903271, 14449489, 16203287, 16451713, 18219679, 18367721, 18529111
Offset: 1

Views

Author

Giovanni Teofilatto, Mar 28 2010

Keywords

Examples

			3+5=8, 3+5+17=25, 3+5+17+103=128 are perfect powers, i.e., in A007504.
		

Crossrefs

Programs

  • Mathematica
    fQ[n_] := GCD @@ Last /@ FactorInteger@n > 1; p = sp = 3; lst = {3}; While[p < 10^9, If[ fQ[sp + p], AppendTo[lst, p]; Print@p; sp = sp + p]; p = NextPrime@p]; lst

Extensions

Edited and extended by R. J. Mathar, Mar 31 2010
Edited, corrected and extended by Robert G. Wilson v, Apr 20 2010

A176578 Slowest increasing sequence of odd primes such that the partial sums of the sequence from the second on are perfect powers.

Original entry on oeis.org

2, 7, 23, 89, 1607, 1753, 2351, 7393, 19543, 20593, 46639, 54449, 284527, 344249, 407791, 512009, 812431, 844433, 1214407, 1316033, 2109671, 2233601, 11251351, 11267777, 13903271, 14449489, 16203287, 16451713, 18219679, 18367721
Offset: 1

Views

Author

Robert G. Wilson v, Apr 20 2010

Keywords

Crossrefs

Programs

  • Mathematica
    fQ[n_] := GCD @@ Last /@ FactorInteger@n > 1; p = 3; sp = 2; lst = {2}; While[p < 10^9, If[ fQ[sp + p], AppendTo[lst, p]; Print@p; sp = sp + p]; p = NextPrime@p]; lst

A137354 Lexicographically earliest subsequence of the perfect powers in A001597 such that first differences are an increasing sequence of primes.

Original entry on oeis.org

1, 4, 9, 16, 27, 64, 125, 196, 12167, 28224, 68921, 115600, 177147, 244036, 421875, 614656, 970299, 1378276, 2460375, 3556996, 4657463, 5760000, 9129329, 12531600, 16974593, 21436900, 26730899, 32035600, 39135393, 46240000, 53582633
Offset: 1

Views

Author

R. J. Mathar, Mar 07 2008

Keywords

Crossrefs

A variant of A113495. Partial sums of A137355.

Programs

Extensions

a(22)-a(32) from Robert G. Wilson v, Apr 20 2010
Showing 1-3 of 3 results.