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!)
A141500 A triangular sequence of coefficients based on a skip prime prime power sequence: t(n,m)=Prime[m + 1]^n*Prime[m + 3]; qualified so the m=0 and n=0 terms are well-defined. 0
1, 2, 3, 5, 7, 11, 40, 189, 1375, 4459, 80, 567, 6875, 31213, 248897, 160, 1701, 34375, 218491, 2737867, 7054567, 320, 5103, 171875, 1529437, 30116537, 91709371, 555164087, 640, 15309, 859375, 10706059, 331281907, 1192221823, 9437789479 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums are: {1, 5, 23, 6063, 287632, 10047161, 678696730, 36895155023, 3099828564214,604927714827969, 50682382054711876, ...}
LINKS
FORMULA
t(n,m)=Prime[m + 1]^n*Prime[m + 3];
EXAMPLE
{1},
{2, 3},
{5, 7, 11},
{40, 189, 1375, 4459},
{80, 567, 6875, 31213, 248897},
{160, 1701, 34375, 218491, 2737867, 7054567},
{320, 5103, 171875, 1529437, 30116537, 91709371, 555164087},
{640, 15309, 859375, 10706059, 331281907, 1192221823, 9437789479, 25922280431},
{1280, 45927, 4296875, 74942413, 3644100977, 15498883699, 160442421143, 492523328189, 2427640543711},
{2560, 137781, 21484375, 524596891, 40085110747, 201485488087, 2727521159431, 9357943235591, 55835732505353, 536764401107153},
{5120, 413343, 107421875, 3672178237, 440936218217, 2619311345131, 46367859710327, 177800921476229, 1284221847623119, 15566167632107437, 33604759766212841}
MATHEMATICA
Clear[t, n, m, a] t[n_, m_] = If[m == 0 && n == 0, 1, If[n == 1, Prime[m + 1], If[n == 2, Prime[m + 3], Prime[m + 1]^n*Prime[m + 3]]]]; a = Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[a]
CROSSREFS
Sequence in context: A140561 A140553 A195337 * A215162 A059999 A237438
KEYWORD
nonn,uned,tabl
AUTHOR
Roger L. Bagula, Aug 10 2008
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 April 23 01:19 EDT 2024. Contains 371906 sequences. (Running on oeis4.)