login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A135698
Palindromes with odd number of digits formed from the reflected decimal expansion of Pi.
4
3, 313, 31413, 3141413, 314151413, 31415951413, 3141592951413, 314159262951413, 31415926562951413, 3141592653562951413, 314159265353562951413, 31415926535853562951413, 3141592653589853562951413, 314159265358979853562951413, 31415926535897979853562951413
OFFSET
1,1
COMMENTS
Pi = 3.14159265358979323846264338327... (see A000796).
The number of digits of a(n) is equal to 2n - 1.
The first five members of this sequence are in the example of A119351.
LINKS
EXAMPLE
n ........... a(n)
1 ............ 3
2 ........... 313
3 .......... 31413
4 ......... 3141413
5 ........ 314151413
6 ....... 31415951413
7 ...... 3141592951413
8 ..... 314159262951413
9 .... 31415926562951413
10 .. 3141592653562951413
MATHEMATICA
pinxt[n_]:=With[{pid=RealDigits[Pi, 10, 20][[1]]}, Module[{a=Take[pid, n]}, FromDigits[Join[a, Reverse[Most[a]]]]]]; Table[pinxt[n], {n, 1, 15}] (* Harvey P. Dale, Oct 06 2011 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Omar E. Pol, Mar 01 2008, Mar 28 2008
EXTENSIONS
More terms from Harvey P. Dale, Oct 06 2011
STATUS
approved