[go: up one dir, main page]

login
Revisions by Robert Israel (See also Robert Israel's wiki page
and changes approved by Robert Israel)

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

Showing entries 1-10 | older changes
Numbers m with the property that shifting the rightmost digit of m to the left end multiplies the number by 5.
(history; published version)
#26 by Robert Israel at Tue Nov 05 23:13:25 EST 2024
STATUS

editing

proposed

#25 by Robert Israel at Tue Nov 05 23:12:40 EST 2024
LINKS

Robert Israel, <a href="/A146754/b146754_1.txt">Table of n, a(n) for n = 1..258</a>

MAPLE

f:= proc(d) # solutions with d+1 digits

local b, R, a;

R:= NULL;

for b from ceil(49*10^(d-1)/(10^d - 1)) to 9 do

a:= (10^d-5)*b/49;

if a::integer then R:= R, 10*a+b fi

od;

R

end proc:

map(f, [$1..42]); # Robert Israel, Nov 05 2024

STATUS

approved

editing

a(n) = (number of x with largest prime factor of the form 4k+3 less than or equal to n) minus (number of x with largest prime factor of the form 4k+1 less than or equal to n).
(history; published version)
#13 by Robert Israel at Tue Nov 05 19:13:07 EST 2024
STATUS

editing

proposed

Primes dividing repunits R(10^n) for some n.
(history; published version)
#33 by Robert Israel at Tue Nov 05 16:44:37 EST 2024
STATUS

editing

proposed

#32 by Robert Israel at Tue Nov 05 16:44:25 EST 2024
COMMENTS

Includes all terms > 5 of A077497. - Robert Israel, Nov 05 2024

CROSSREFS
STATUS

approved

editing

#29 by Robert Israel at Tue Nov 05 16:31:04 EST 2024
STATUS

editing

proposed

#28 by Robert Israel at Tue Nov 05 16:30:51 EST 2024
COMMENTS

A prime p > 5 is here if the multiplicative order of 10 (mod p) is of the form 2^i*5^j, with i and j nonnegative.

LINKS

Robert Israel, <a href="/A178070/b178070_1.txt">Table of n, a(n) for n = 1..110</a>

MAPLE

filter:= proc(p) local v;

if not isprime(p) then return false fi;

v:= numtheory:-order(10, p);

v = 2^padic:-ordp(v, 2) * 5^padic:-ordp(v, 5)

end proc:

select(filter, [seq(i, i=7 .. 10^6, 2)]); # Robert Israel, Nov 05 2024

STATUS

approved

editing

a(n) = Sum_{d|n} d * sigma(n/d, d).
(history; published version)
#14 by Robert Israel at Tue Nov 05 13:51:55 EST 2024
STATUS

editing

proposed

#13 by Robert Israel at Tue Nov 05 13:51:49 EST 2024
LINKS

Robert Israel, <a href="/A198302/b198302_1.txt">Table of n, a(n) for n = 1..6236</a>

MAPLE

f:= proc(n) local d; add(d*numtheory:-sigma[d](n/d), d=numtheory:-divisors(n)) end proc:

map(f, [$1..100]); # Robert Israel, Nov 05 2024

KEYWORD

nonn,look

STATUS

approved

editing

a(n) = (number of x with largest prime factor of the form 4k+3 less than or equal to n) minus (number of x with largest prime factor of the form 4k+1 less than or equal to n).
(history; published version)
#12 by Robert Israel at Tue Nov 05 13:10:18 EST 2024
LINKS

Robert Israel, <a href="/A071825/a071825.png">Log-log plot of (n, a(n)) for 1 <= n <= 10^6</a>