login
A364378
Numbers whose representation in Jacobsthal greedy base (A265747) is palindromic.
1
0, 1, 2, 4, 6, 9, 12, 20, 22, 27, 36, 41, 44, 60, 68, 84, 86, 97, 112, 123, 132, 143, 158, 169, 172, 204, 220, 252, 260, 292, 308, 340, 342, 363, 396, 417, 432, 453, 486, 507, 516, 537, 570, 591, 606, 627, 660, 681, 684, 748, 780, 844, 860, 924, 956, 1020, 1028
OFFSET
1,3
COMMENTS
A128209(n) = A001045(n) + 1 is a term for n >= 3, since its representation is two 1's with n-3 0's between them.
A084639(n) is a term for n >= 1 since its representation is n 1's.
A014825(n) is a term for n >= 1 since its representation is n-1 0's interleaved with n 1's.
LINKS
EXAMPLE
The first 10 terms are:
n a(n) A265747(a(n))
-- ---- -------------
1 0 0
2 1 1
3 2 2
4 4 11
5 6 101
6 9 111
7 12 1001
8 20 1111
9 22 10001
10 27 10101
MATHEMATICA
palJacobQ[n_] := PalindromeQ[A265747[n]]; Select[Range[0, 1000], palJacobQ] (* using A265747[n] *)
PROG
(PARI) is(n) = {my(dig = digits(A265747(n))); dig == Vecrev(dig); } \\ using A265747(n)
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Jul 21 2023
STATUS
approved