A056698
Numbers k such that 10^k + 3*R_k is prime, where R_k = 11...1 is the repunit (A002275) of length k.
Original entry on oeis.org
1, 15, 41, 83, 95, 341, 551, 669, 989, 1223, 6923, 103703
Offset: 1
-
Do[ If[ PrimeQ[ 10^n + 3*(10^n-1)/9], Print[n]], {n, 0, 30470}]
-
for(k=1,1500,if(ispseudoprime(4*(10^k-1)/3+1),print1(k, ", "))) \\ Hugo Pfoertner, Jul 22 2020
A069882
Numbers n such that n and 2n-1 are both palindromes.
Original entry on oeis.org
1, 2, 3, 4, 5, 6, 66, 666, 6666, 66666, 666666, 6666666, 66666666, 666666666, 6666666666, 66666666666, 666666666666, 6666666666666, 66666666666666, 666666666666666, 6666666666666666, 66666666666666666, 666666666666666666
Offset: 1
66 is a member as 2*66 - 1 = 131 is also a palindrome.
A326929
Numbers whose divisors and arithmetic mean of divisors are palindromic.
Original entry on oeis.org
1, 3, 5, 6, 7, 11, 22, 131, 262, 13331, 26662, 1333331, 2666662
Offset: 1
The divisors of 2666662 are {1,2,1333331,2666662} which are all palindromic. Their arithmetic mean is 999999 and is also palindromic. Therefore, 2666662 is in the sequence.
Showing 1-3 of 3 results.
Comments