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-2 of 2 results.

A331000 Unitary Ruth-Aaron numbers: numbers k such that A008475(k) = A008475(k+1).

Original entry on oeis.org

5, 77, 714, 948, 2491, 2996, 3450, 4293, 5405, 6669, 9125, 10807, 13869, 14587, 16932, 17346, 19511, 19967, 23323, 26642, 27104, 31931, 33019, 37925, 41124, 43616, 48635, 52554, 55499, 58077, 58695, 79248, 80837, 86088, 89979, 95709, 98644, 99163, 108458, 117467
Offset: 1

Views

Author

Amiram Eldar, Jan 05 2020

Keywords

Comments

A variation of Ruth-Aaron numbers with unitary prime-power divisors instead of prime divisors.

Examples

			5 is a term since A008475(5) = A008475(6) = 5.
		

Crossrefs

Programs

  • Mathematica
    s[1] = 0; s[n_] := Plus @@ (Power @@@ FactorInteger[n]); seq = {}; s1 = 0; Do[s2 = s[n]; If[s1 == s2, AppendTo[seq, n - 1]]; s1 = s2, {n, 2, 10^5}]; seq

A333802 Numbers k such that A181894(k)+1 = A181894(k+1).

Original entry on oeis.org

2, 3, 4, 16, 20, 35, 143, 152, 208, 256, 650, 1624, 2232, 4233, 4345, 5368, 8099, 9424, 11024, 11919, 12099, 14905, 18424, 20220, 21716, 22194, 24335, 25592, 26123, 27390, 30457, 34945, 38180, 40425, 51992, 52206, 52947, 56563, 63712, 65536, 67123, 71154, 71284
Offset: 1

Views

Author

Amiram Eldar, Apr 05 2020

Keywords

Comments

A variation of A064111 and A228126 with "Fermi-Dirac primes" (or infinitary components) instead of prime divisors.

Examples

			4 is a term since A181894(4) + 1 = 4 + 1 = 5 = A181894(5).
		

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := p^(2^(-1 + Position[Reverse @ IntegerDigits[e, 2], 1])); s[1] = 0; s[n_] := Plus @@ (Flatten @ (f @@@ FactorInteger[n])); seq = {}; s1 = 0; Do[s2 = s[n]; If[s1 + 1 == s2, AppendTo[seq, n - 1]]; s1 = s2, {n, 2, 10^5}]; seq
Showing 1-2 of 2 results.