login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A003590 Rows of Pascal's triangle written as a single number. 5
1, 11, 121, 1331, 14641, 15101051, 1615201561, 172135352171, 18285670562881, 193684126126843691, 1104512021025221012045101, 1115516533046246233016555111, 1126622049579292479249522066121, 11378286715128717161716128771528678131 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
If n<=500, a(n) is prime only for a(1)=11, a(8)=18285670562881, and a(29). - Enrique Pérez Herrero, Jun 05 2010
LINKS
FORMULA
a(n) mod 100 = 1 + 10 * (n mod 10). - Enrique Pérez Herrero, May 27 2010
MAPLE
a:= n-> parse(cat(seq(binomial(n, k), k=0..n))):
seq(a(n), n=0..15); # Alois P. Heinz, Jan 15 2024
MATHEMATICA
A003590[i_Integer] := ToExpression[StringJoin[Table[ToString[Binomial[i, j]], {j, 0, i}]]] (* Enrique Pérez Herrero, May 27 2010 *)
FromDigits[Flatten[IntegerDigits/@#]]&/@Table[Binomial[i, j], {i, 0, 15}, {j, 0, i}] (* Harvey P. Dale, Aug 11 2024 *)
PROG
(PARI) A003590(i)={ my(j, a); a=""; for(j=0, i, a=Str(a, binomial(i, j)) ); return(eval(a)); } /* Enrique Pérez Herrero, Jun 03 2010 */
CROSSREFS
Cf. A007318.
Sequence in context: A325203 A055479 A195946 * A072051 A092846 A329734
KEYWORD
nonn,easy,base
AUTHOR
Matthew Wells (mwells(AT)nmt.edu)
EXTENSIONS
Offset 0 from Alois P. Heinz, Jan 15 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 5 07:27 EDT 2024. Contains 375686 sequences. (Running on oeis4.)