A332114
a(n) = (10^(2n+1)-1)/9 + 3*10^n.
Original entry on oeis.org
4, 141, 11411, 1114111, 111141111, 11111411111, 1111114111111, 111111141111111, 11111111411111111, 1111111114111111111, 111111111141111111111, 11111111111411111111111, 1111111111114111111111111, 111111111111141111111111111, 11111111111111411111111111111, 1111111111111114111111111111111
Offset: 0
- Brady Haran and Simon Pampena, Glitch Primes and Cyclops Numbers, Numberphile video (2015).
- Patrick De Geest, Palindromic Wing Primes: (1)4(1), updated: June 25, 2017.
- Makoto Kamada, Factorization of 11...11411...11, updated Dec 11 2018.
- Index entries for linear recurrences with constant coefficients, signature (111,-1110,1000).
Cf.
A138148 (cyclops numbers with binary digits),
A002113 (palindromes).
Cf.
A332124 ..
A332194 (variants with different repeated digit 2, ..., 9).
Cf.
A332112 ..
A332119 (variants with different middle digit 2, ..., 9).
-
A332114 := n -> (10^(2*n+1)-1)/9+3*10^n;
-
Array[(10^(2 # + 1)-1)/9 + 3*10^# &, 15, 0]
-
apply( {A332114(n)=10^(n*2+1)\9+3*10^n}, [0..15])
-
def A332114(n): return 10**(n*2+1)//9+3*10**n
A332124
a(n) = 2*(10^(2n+1)-1)/9 + 2*10^n.
Original entry on oeis.org
4, 242, 22422, 2224222, 222242222, 22222422222, 2222224222222, 222222242222222, 22222222422222222, 2222222224222222222, 222222222242222222222, 22222222222422222222222, 2222222222224222222222222, 222222222222242222222222222, 22222222222222422222222222222, 2222222222222224222222222222222
Offset: 0
Cf.
A138148 (cyclops numbers with binary digits),
A002113 (palindromes).
Cf.
A332114 ..
A332194 (variants with different repeated digit 1, ..., 9).
Cf.
A332120 ..
A332129 (variants with different middle digit 0, ..., 9).
-
A332124 := n -> 2*((10^(2*n+1)-1)/9+10^n);
-
Array[2 ((10^(2 # + 1)-1)/9 + 10^#) &, 15, 0]
Table[FromDigits[Join[PadRight[{},n,2],{4},PadRight[{},n,2]]],{n,0,20}] (* or *) LinearRecurrence[{111,-1110,1000},{4,242,22422},20](* Harvey P. Dale, Mar 06 2023 *)
-
apply( {A332124(n)=(10^(n*2+1)\9+10^n)*2}, [0..15])
-
def A332124(n): return (10**(n*2+1)//9+10**n)*2
A332134
a(n) = (10^(2n+1)-1)/3 + 10^n.
Original entry on oeis.org
4, 343, 33433, 3334333, 333343333, 33333433333, 3333334333333, 333333343333333, 33333333433333333, 3333333334333333333, 333333333343333333333, 33333333333433333333333, 3333333333334333333333333, 333333333333343333333333333, 33333333333333433333333333333, 3333333333333334333333333333333
Offset: 0
- Brady Haran and Simon Pampena, Glitch Primes and Cyclops Numbers, Numberphile video (2015).
- Patrick De Geest, Palindromic Wing Primes: (3)4(3), updated: June 25, 2017.
- Makoto Kamada, Factorization of 33...33433...33, updated Dec 11 2018.
- Index entries for linear recurrences with constant coefficients, signature (111,-1110,1000).
Cf.
A138148 (cyclops numbers with binary digits),
A002113 (palindromes).
Cf.
A332124 ..
A332194 (variants with different repeated digit 2, ..., 9).
Cf.
A332130 ..
A332139 (variants with different middle digit 0, ..., 9).
-
A332134 := n -> (10^(2*n+1)-1)/3+10^n;
-
Array[ (10^(2 # + 1)-1)/3 + 10^# &, 15, 0]
-
apply( {A332134(n)=10^(n*2+1)\3+10^n}, [0..15])
-
def A332134(n): return 10**(n*2+1)//3+10**n
A332154
a(n) = 5*(10^(2*n+1)-1)/9 - 10^n.
Original entry on oeis.org
4, 545, 55455, 5554555, 555545555, 55555455555, 5555554555555, 555555545555555, 55555555455555555, 5555555554555555555, 555555555545555555555, 55555555555455555555555, 5555555555554555555555555, 555555555555545555555555555, 55555555555555455555555555555, 5555555555555554555555555555555
Offset: 0
Cf.
A138148 (cyclops numbers with binary digits),
A002113 (palindromes).
Cf.
A332114 ..
A332194 (variants with different repeated digit 1, ..., 9).
Cf.
A332150 ..
A332159 (variants with different middle digit 0, ..., 9).
-
A332154 := n -> 5*(10^(2*n+1)-1)/9-10^n;
-
Array[5 (10^(2 # + 1)-1)/9 - 10^# &, 15, 0]
LinearRecurrence[{111,-1110,1000},{4,545,55455},20] (* or *) Table[FromDigits[Join[PadRight[{},n,5],{4},PadRight[{},n,5]]],{n,0,20}] (* Harvey P. Dale, Mar 09 2025 *)
-
apply( {A332154(n)=10^(n*2+1)\9*5-10^n}, [0..15])
-
def A332154(n): return 10**(n*2+1)//9*5-10**n
A332164
a(n) = 6*(10^(2*n+1)-1)/9 - 2*10^n.
Original entry on oeis.org
4, 646, 66466, 6664666, 666646666, 66666466666, 6666664666666, 666666646666666, 66666666466666666, 6666666664666666666, 666666666646666666666, 66666666666466666666666, 6666666666664666666666666, 666666666666646666666666666, 66666666666666466666666666666, 6666666666666664666666666666666
Offset: 0
Cf.
A138148 (cyclops numbers with binary digits),
A002113 (palindromes).
Cf.
A332114 ..
A332194 (variants with different repeated digit 1, ..., 9).
Cf.
A332160 ..
A332169 (variants with different middle digit 0, ..., 9).
-
A332164 := n -> 6*(10^(2*n+1)-1)/9-2*10^n;
-
Array[6 (10^(2 # + 1)-1)/9 - 2*10^# &, 15, 0]
-
apply( {A332164(n)=10^(n*2+1)\9*6-2*10^n}, [0..15])
-
def A332164(n): return 10**(n*2+1)//9*6-2*10**n
Showing 1-5 of 5 results.
Comments