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.

A055036 Min[x] composite zero site for sigma(x+6^n) - sigma(x) - 6^n.

Original entry on oeis.org

104, 125, 195, 415, 2743, 2935, 3535, 19735, 22645, 108703, 977353, 1921033, 2523433, 2425175, 4227575, 85969345, 32606935, 224917033, 1362833713, 716210677, 1557843865, 6226853857, 20369543065
Offset: 1

Views

Author

Labos Elemer, Jun 01 2000

Keywords

Examples

			n = 6: d = 6^6 = 46656, a(n) = a(6) = 2935 because sigma(2935) + 46656 = 1 + 5 + 587 + 2935 + 46656 = sigma(2935 + 46656) = sigma(49591) = 1 + 101 + 491 + 49591 = 50184.
		

Crossrefs

Programs

  • Mathematica
    L = {}; Do[i = 1; While[ ! ((Plus @@ Divisors[i + 6^j] == 6^j + Plus @@ Divisors[i]) && ! PrimeQ[i]), i++ ]; L = Append[L, i], {j, 1, 11}]; L (from Vit Planocka)

Formula

a(n) = Min(x) solution for A000203(x+A000400(n)) = A000203(x) + A000400(n) Diophantine equation.

Extensions

One more term from Vit Planocka (planocka(AT)mistral.cz), Sep 23 2003
a(12)-a(23) from Donovan Johnson, Nov 30 2008