login

Revision History for the OEIS

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
allocated for Jo Geon Woo
(history; published version)
#22 by Andrew Howroyd at Mon Aug 31 21:06:13 EDT 2026
NAME

Sum of elements in the modified prime factorization of n: a(n) = 1 + sum p_i^e_i for n = p_1^e_1 * ... * p_k^e_k.

DATA

2, 3, 4, 5, 6, 6, 8, 9, 10, 8, 12, 8, 14, 10, 9, 17, 18, 12, 20, 10, 11, 14, 24, 8, 26, 16, 10, 12, 30, 8

OFFSET

1,1

COMMENTS

For n > 1 with prime factorization n = p_1^e_1 * p_2^e_2 * ... * p_k^e_k, a(n) = 1 + sum_{i=1..k} p_i^e_i. For n=1, a(1) = 1 + 1 = 2.

Fixed point: a(6) = 6 is the unique fixed point.

Cycle: a(8) = 9, a(9) = 10, a(10) = 8 forms a 3-cycle.

Empirical observation: Iterating a(n) on any positive integer n eventually reaches either the fixed point 6 or the 3-cycle {8, 9, 10}.

FORMULA

a(n) = 1 + sum_{i=1..k} p_i^(e_i) for n = p_1^(e_1) * p_2^(e_2) * ... * p_k^(e_k) with p_i prime and e_i >= 1.

a(1) = 2.

EXAMPLE

a(8) = 1 + 2^3 = 9.

a(10) = 1 + 2^1 + 5^1 = 8.

Iteration example: 19018 -> 92 -> 28 -> 12 -> 8 -> 9 -> 10 -> 8.

PROG

(Python)

def a(n):

if n == 1: return 2

factors = []

d = 2

temp = n

while d * d <= temp:

if temp % d == 0:

power = 1

while temp % d == 0:

power *= d

temp //= d

factors.append(power)

d += 1

if temp > 1:

factors.append(temp)

return 1 + sum(factors)

CROSSREFS
KEYWORD

nonn,changed

recycled

AUTHOR

Jo Geon Woo, Aug 31 2026

allocated for Roger Ford
(history; published version)
#40 by Roger Ford at Mon Aug 31 21:01:32 EDT 2026
STATUS

editing

proposed

#39 by Roger Ford at Mon Aug 31 21:01:11 EDT 2026
NAME

Triangle For triangle T(n,k) is , the number of arches of rows are semi-meanders with (n) top arches and . The columns are the length k of arches without a covering arch. See example for semi-meanders with noncovered 4 top arches of length (k).

Decimal expansion of the infinite power tower with base square root of phi.
(history; published version)
#175 by OEIS Server at Mon Aug 31 20:58:42 EDT 2026
LINKS

Paolo Xausa, <a href="/A394032/b394032_1.txt">Table of n, a(n) for n = 1..10000</a>

#174 by Michael De Vlieger at Mon Aug 31 20:58:42 EDT 2026
STATUS

reviewed

approved

Discussion
Mon Aug 31
20:58
OEIS Server: Installed first b-file as b394032.txt.
Triangle read by rows giving T(n,k) = number of sets of k black squares in an n X n checkerboard with the upper left corner colored black, such that the line joining any 2 squares slopes down to the right, 0 <= k <= n.
(history; published version)
#18 by Andrew Howroyd at Mon Aug 31 20:55:19 EDT 2026
STATUS

editing

proposed

Number of connected unit interval graphs with n nodes; also number of bracelets (turnover necklaces) with n black beads and n-1 white beads.
(history; published version)
#122 by Michael De Vlieger at Mon Aug 31 20:54:44 EDT 2026
STATUS

reviewed

approved

Euler's triangle: triangle of Eulerian numbers T(n,k) (n>=0, 0 <= k <= n) read by rows.
(history; published version)
#188 by Michael De Vlieger at Mon Aug 31 20:54:36 EDT 2026
STATUS

reviewed

approved

a(0) = 1; thereafter a(2*n + 1) = 3^n, a(2*n + 2) = 2 * 3^n.
(history; published version)
#112 by Michael De Vlieger at Mon Aug 31 20:54:27 EDT 2026
STATUS

reviewed

approved

Triangle of third-order Eulerian numbers: 3-Stirling permutations enumerated by ascents.
(history; published version)
#52 by Michael De Vlieger at Mon Aug 31 20:54:19 EDT 2026
STATUS

reviewed

approved


Showing entries 1-10 | older changes